2016-05-27 17:01:15 -07:00
|
|
|
{ stdenv, fetchFromGitHub, fetchurl, makeWrapper
|
2016-11-08 06:06:17 -08:00
|
|
|
, perl, pandoc, python2Packages, git
|
2016-05-27 17:01:15 -07:00
|
|
|
, par2cmdline ? null, par2Support ? false
|
|
|
|
}:
|
2013-01-06 09:15:04 -08:00
|
|
|
|
|
|
|
assert par2Support -> par2cmdline != null;
|
2012-08-05 05:02:05 -07:00
|
|
|
|
2017-03-15 13:20:25 -07:00
|
|
|
let version = "0.29"; in
|
2013-11-13 02:45:40 -08:00
|
|
|
|
2012-08-05 05:02:05 -07:00
|
|
|
with stdenv.lib;
|
2011-08-11 09:33:47 -07:00
|
|
|
|
2015-07-30 16:20:04 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2014-12-25 17:30:21 -08:00
|
|
|
name = "bup-${version}";
|
2012-08-05 05:02:05 -07:00
|
|
|
|
2016-05-27 17:01:15 -07:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
repo = "bup";
|
|
|
|
owner = "bup";
|
|
|
|
rev = version;
|
2017-03-15 13:20:25 -07:00
|
|
|
sha256 = "1cc9kpq9bpln89m4ni6wqzh4c8zwxmgnhaibdxxfs5pk2mpl3ds5";
|
2011-08-11 09:33:47 -07:00
|
|
|
};
|
2012-08-05 05:02:05 -07:00
|
|
|
|
2016-11-08 06:06:17 -08:00
|
|
|
buildInputs = [ git python2Packages.python ];
|
2013-09-01 12:32:40 -07:00
|
|
|
nativeBuildInputs = [ pandoc perl makeWrapper ];
|
2012-08-05 05:02:05 -07:00
|
|
|
|
2015-07-30 16:20:04 -07:00
|
|
|
postPatch = ''
|
2015-01-08 01:26:49 -08:00
|
|
|
patchShebangs .
|
2013-04-06 02:00:37 -07:00
|
|
|
substituteInPlace Makefile --replace "-Werror" ""
|
2016-05-27 17:01:15 -07:00
|
|
|
substituteInPlace Makefile --replace "./format-subst.pl" "${perl}/bin/perl ./format-subst.pl"
|
2013-01-06 09:15:04 -08:00
|
|
|
'' + optionalString par2Support ''
|
|
|
|
substituteInPlace cmd/fsck-cmd.py --replace "['par2'" "['${par2cmdline}/bin/par2'"
|
2011-08-11 09:33:47 -07:00
|
|
|
'';
|
2012-08-05 05:02:05 -07:00
|
|
|
|
2013-04-06 02:00:37 -07:00
|
|
|
dontAddPrefix = true;
|
|
|
|
|
2012-08-05 05:02:05 -07:00
|
|
|
makeFlags = [
|
|
|
|
"MANDIR=$(out)/share/man"
|
|
|
|
"DOCDIR=$(out)/share/doc/bup"
|
|
|
|
"BINDIR=$(out)/bin"
|
|
|
|
"LIBDIR=$(out)/lib/bup"
|
|
|
|
];
|
|
|
|
|
2016-05-27 17:01:15 -07:00
|
|
|
postInstall = ''
|
|
|
|
wrapProgram $out/bin/bup \
|
|
|
|
--prefix PATH : ${git}/bin \
|
|
|
|
--prefix PYTHONPATH : ${concatStringsSep ":" (map (x: "$(toPythonPath ${x})")
|
2016-11-08 06:06:17 -08:00
|
|
|
(with python2Packages;
|
2016-10-09 07:54:51 -07:00
|
|
|
[ setuptools tornado ]
|
|
|
|
++ stdenv.lib.optionals (!stdenv.isDarwin) [ pyxattr pylibacl fuse ]))}
|
2013-04-06 02:00:37 -07:00
|
|
|
'';
|
|
|
|
|
2011-08-11 09:33:47 -07:00
|
|
|
meta = {
|
2013-04-06 02:00:37 -07:00
|
|
|
homepage = "https://github.com/bup/bup";
|
2016-05-27 17:01:15 -07:00
|
|
|
description = "Efficient file backup system based on the git packfile format";
|
|
|
|
license = licenses.gpl2Plus;
|
2013-04-06 02:00:37 -07:00
|
|
|
|
|
|
|
longDescription = ''
|
2012-08-05 05:02:05 -07: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 03:51:46 -07:00
|
|
|
|
2016-08-02 07:50:15 -07:00
|
|
|
platforms = platforms.linux;
|
2016-05-27 17:01:15 -07:00
|
|
|
maintainers = with maintainers; [ muflax ];
|
2011-08-11 09:33:47 -07:00
|
|
|
};
|
|
|
|
}
|