forked from mirrors/nixpkgs
d5e6a4494a
* mirrors: add pypi * Python: Use pypi mirror for all PyPI packages
46 lines
1.2 KiB
Nix
46 lines
1.2 KiB
Nix
{ stdenv, fetchurl, python3Packages, acl, lz4, openssl }:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
name = "borgbackup-${version}";
|
|
version = "1.0.2";
|
|
namePrefix = "";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://pypi/b/borgbackup/borgbackup-${version}.tar.gz";
|
|
sha256 = "1myz10pwxnac9z59gw1w3xjhz6ghx03vngpl97ca527pj0r39shi";
|
|
};
|
|
|
|
nativeBuildInputs = with python3Packages; [
|
|
# For building documentation:
|
|
sphinx
|
|
];
|
|
propagatedBuildInputs = [
|
|
acl lz4 openssl
|
|
] ++ (with python3Packages; [
|
|
cython msgpack llfuse tox detox setuptools_scm
|
|
]);
|
|
|
|
preConfigure = ''
|
|
export BORG_OPENSSL_PREFIX="${openssl}"
|
|
export BORG_LZ4_PREFIX="${lz4}"
|
|
'';
|
|
|
|
postInstall = ''
|
|
make -C docs singlehtml
|
|
mkdir -p $out/share/doc/borg
|
|
cp -R docs/_build/singlehtml $out/share/doc/borg/html
|
|
|
|
make -C docs man
|
|
mkdir -p $out/share/man
|
|
cp -R docs/_build/man $out/share/man/man1
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A deduplicating backup program (attic fork)";
|
|
homepage = https://borgbackup.github.io/;
|
|
license = licenses.bsd3;
|
|
platforms = platforms.unix; # Darwin and FreeBSD mentioned on homepage
|
|
maintainers = with maintainers; [ nckx ];
|
|
};
|
|
}
|