1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

borg: build and install documentation

This commit is contained in:
Tobias Geerinckx-Rice 2016-01-24 04:02:27 +01:00
parent 10229032a9
commit aca5edb8f9

View file

@ -1,4 +1,4 @@
{ stdenv, fetchurl, python3Packages, openssl, acl, lz4 }:
{ stdenv, fetchurl, python3Packages, acl, lz4, openssl }:
python3Packages.buildPythonPackage rec {
name = "borgbackup-${version}";
@ -10,14 +10,31 @@ python3Packages.buildPythonPackage rec {
sha256 = "0n78c982kdfqbyi9jawcvzgdik4l36c2s7rpzkfr1ka6506k2rx4";
};
propagatedBuildInputs = with python3Packages;
[ cython msgpack openssl acl llfuse tox detox lz4 setuptools_scm ];
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/;