2016-01-24 04:02:27 +01:00
|
|
|
{ stdenv, fetchurl, python3Packages, acl, lz4, openssl }:
|
2015-07-21 20:41:13 +02:00
|
|
|
|
2016-02-19 13:12:11 +01:00
|
|
|
python3Packages.buildPythonApplication rec {
|
2015-10-12 01:40:12 +02:00
|
|
|
name = "borgbackup-${version}";
|
2016-10-31 22:25:50 +01:00
|
|
|
version = "1.0.8";
|
2015-07-21 20:41:13 +02:00
|
|
|
namePrefix = "";
|
|
|
|
|
2015-10-12 01:40:12 +02:00
|
|
|
src = fetchurl {
|
2016-07-07 23:51:00 +02:00
|
|
|
url = "https://github.com/borgbackup/borg/releases/download/"
|
|
|
|
+ "${version}/${name}.tar.gz";
|
2016-10-31 22:25:50 +01:00
|
|
|
sha256 = "1fdfi0yzzdrrlml6780n4fh61sqm7pw6fcd1y67kfkvw8hy5c0k9";
|
2015-07-21 20:41:13 +02:00
|
|
|
};
|
|
|
|
|
2016-01-24 04:02:27 +01:00
|
|
|
nativeBuildInputs = with python3Packages; [
|
|
|
|
# For building documentation:
|
|
|
|
sphinx
|
|
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
acl lz4 openssl
|
|
|
|
] ++ (with python3Packages; [
|
|
|
|
cython msgpack llfuse tox detox setuptools_scm
|
|
|
|
]);
|
2015-07-21 20:41:13 +02:00
|
|
|
|
|
|
|
preConfigure = ''
|
2016-04-16 19:44:32 +02:00
|
|
|
export BORG_OPENSSL_PREFIX="${openssl.dev}"
|
2016-09-09 17:24:00 +02:00
|
|
|
export BORG_LZ4_PREFIX="${lz4.dev}"
|
2015-07-21 20:41:13 +02:00
|
|
|
'';
|
|
|
|
|
2016-01-24 04:02:27 +01: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 20:41:13 +02: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 23:43:52 +01:00
|
|
|
maintainers = with maintainers; [ nckx ];
|
2015-07-21 20:41:13 +02:00
|
|
|
};
|
|
|
|
}
|