2018-01-06 21:10:57 +01:00
|
|
|
{ stdenv, fetchFromGitHub, makeWrapper
|
2016-11-08 15:06:17 +01:00
|
|
|
, perl, pandoc, python2Packages, git
|
2017-04-07 21:47:03 +02:00
|
|
|
, par2cmdline ? null, par2Support ? true
|
2016-05-28 02:01:15 +02:00
|
|
|
}:
|
2013-01-06 18:15:04 +01:00
|
|
|
|
|
|
|
assert par2Support -> par2cmdline != null;
|
2012-08-05 14:02:05 +02:00
|
|
|
|
2018-11-02 23:09:25 +01:00
|
|
|
let version = "0.29.2"; in
|
2013-11-13 11:45:40 +01:00
|
|
|
|
2012-08-05 14:02:05 +02:00
|
|
|
with stdenv.lib;
|
2011-08-11 18:33:47 +02:00
|
|
|
|
2015-07-31 01:20:04 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2014-12-26 02:30:21 +01:00
|
|
|
name = "bup-${version}";
|
2012-08-05 14:02:05 +02:00
|
|
|
|
2016-05-28 02:01:15 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
repo = "bup";
|
|
|
|
owner = "bup";
|
|
|
|
rev = version;
|
2018-11-02 23:09:25 +01:00
|
|
|
sha256 = "17lpbyhf43gcln5s43m2zzgichcx7jq6ragcawfklw6svg1vnj89";
|
2011-08-11 18:33:47 +02:00
|
|
|
};
|
2012-08-05 14:02:05 +02:00
|
|
|
|
2018-01-06 21:10:57 +01:00
|
|
|
buildInputs = [
|
|
|
|
git
|
|
|
|
(python2Packages.python.withPackages
|
|
|
|
(p: with p; [ setuptools tornado ]
|
|
|
|
++ stdenv.lib.optionals (!stdenv.isDarwin) [ pyxattr pylibacl fuse ]))
|
|
|
|
];
|
2013-09-01 21:32:40 +02:00
|
|
|
nativeBuildInputs = [ pandoc perl makeWrapper ];
|
2012-08-05 14:02:05 +02:00
|
|
|
|
2015-07-31 01:20:04 +02:00
|
|
|
postPatch = ''
|
2015-01-08 10:26:49 +01:00
|
|
|
patchShebangs .
|
2013-04-06 11:00:37 +02:00
|
|
|
substituteInPlace Makefile --replace "-Werror" ""
|
2016-05-28 02:01:15 +02:00
|
|
|
substituteInPlace Makefile --replace "./format-subst.pl" "${perl}/bin/perl ./format-subst.pl"
|
2013-01-06 18:15:04 +01:00
|
|
|
'' + optionalString par2Support ''
|
|
|
|
substituteInPlace cmd/fsck-cmd.py --replace "['par2'" "['${par2cmdline}/bin/par2'"
|
2011-08-11 18:33:47 +02:00
|
|
|
'';
|
2012-08-05 14:02:05 +02:00
|
|
|
|
2013-04-06 11:00:37 +02:00
|
|
|
dontAddPrefix = true;
|
|
|
|
|
2012-08-05 14:02:05 +02:00
|
|
|
makeFlags = [
|
|
|
|
"MANDIR=$(out)/share/man"
|
|
|
|
"DOCDIR=$(out)/share/doc/bup"
|
|
|
|
"BINDIR=$(out)/bin"
|
|
|
|
"LIBDIR=$(out)/lib/bup"
|
|
|
|
];
|
|
|
|
|
2016-05-28 02:01:15 +02:00
|
|
|
postInstall = ''
|
|
|
|
wrapProgram $out/bin/bup \
|
2018-01-06 21:10:57 +01:00
|
|
|
--prefix PATH : ${git}/bin
|
2013-04-06 11:00:37 +02:00
|
|
|
'';
|
|
|
|
|
2011-08-11 18:33:47 +02:00
|
|
|
meta = {
|
2017-08-01 22:03:30 +02:00
|
|
|
homepage = https://github.com/bup/bup;
|
2016-05-28 02:01:15 +02:00
|
|
|
description = "Efficient file backup system based on the git packfile format";
|
|
|
|
license = licenses.gpl2Plus;
|
2013-04-06 11:00:37 +02:00
|
|
|
|
|
|
|
longDescription = ''
|
2012-08-05 14:02:05 +02:00
|
|
|
Highly efficient file backup system based on the git packfile format.
|
|
|
|
Capable of doing *fast* incremental backups of virtual machine images.
|
|
|
|
'';
|
2013-04-26 12:51:46 +02:00
|
|
|
|
2017-05-19 13:54:28 +02:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2016-05-28 02:01:15 +02:00
|
|
|
maintainers = with maintainers; [ muflax ];
|
2011-08-11 18:33:47 +02:00
|
|
|
};
|
|
|
|
}
|