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-05-21 12:23:27 +00:00
|
|
|
version = "1.0.3";
|
2015-07-21 18:41:13 +00:00
|
|
|
namePrefix = "";
|
|
|
|
|
2015-10-11 23:40:12 +00:00
|
|
|
src = fetchurl {
|
2016-05-21 12:23:27 +00:00
|
|
|
url = "https://pypi.python.org/packages/"
|
|
|
|
+ "c9/c6/1efc338724b054d4d264dfeadfcba11cefa6c3c50f474cec91b8f0c21d3a/"
|
|
|
|
+ "${name}.tar.gz";
|
|
|
|
sha256 = "0kzr0xa00yjfxx27aipli67qg5ffj52yrnqhpf3sdy6k5wzwaybs";
|
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 = ''
|
2016-04-16 17:44:32 +00:00
|
|
|
export BORG_OPENSSL_PREFIX="${openssl.dev}"
|
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
|
|
|
};
|
|
|
|
}
|