2016-01-24 03:02:27 +00:00
|
|
|
{ stdenv, fetchurl, python3Packages, acl, lz4, openssl }:
|
2015-07-21 18:41:13 +00:00
|
|
|
|
2016-02-19 12:12:11 +00:00
|
|
|
python3Packages.buildPythonApplication rec {
|
2015-10-11 23:40:12 +00:00
|
|
|
name = "borgbackup-${version}";
|
2016-04-16 23:06:43 +00:00
|
|
|
version = "1.0.2";
|
2015-07-21 18:41:13 +00:00
|
|
|
namePrefix = "";
|
|
|
|
|
2015-10-11 23:40:12 +00:00
|
|
|
src = fetchurl {
|
2016-04-26 12:38:03 +00:00
|
|
|
url = "mirror://pypi/b/borgbackup/borgbackup-${version}.tar.gz";
|
2016-04-16 23:06:43 +00:00
|
|
|
sha256 = "1myz10pwxnac9z59gw1w3xjhz6ghx03vngpl97ca527pj0r39shi";
|
2015-07-21 18:41:13 +00:00
|
|
|
};
|
|
|
|
|
2016-01-24 03:02:27 +00:00
|
|
|
nativeBuildInputs = with python3Packages; [
|
|
|
|
# For building documentation:
|
|
|
|
sphinx
|
|
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
acl lz4 openssl
|
|
|
|
] ++ (with python3Packages; [
|
|
|
|
cython msgpack llfuse tox detox setuptools_scm
|
|
|
|
]);
|
2015-07-21 18:41:13 +00:00
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
export BORG_OPENSSL_PREFIX="${openssl}"
|
2015-10-11 23:40:12 +00:00
|
|
|
export BORG_LZ4_PREFIX="${lz4}"
|
2015-07-21 18:41:13 +00:00
|
|
|
'';
|
|
|
|
|
2016-01-24 03:02:27 +00:00
|
|
|
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
|
|
|
|
'';
|
|
|
|
|
2015-07-21 18:41:13 +00:00
|
|
|
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
|
2016-01-07 22:43:52 +00:00
|
|
|
maintainers = with maintainers; [ nckx ];
|
2015-07-21 18:41:13 +00:00
|
|
|
};
|
|
|
|
}
|