2014-12-26 01:30:21 +00:00
|
|
|
{ stdenv, fetchzip, python, pyxattr, pylibacl, setuptools, fuse, git, perl, pandoc, makeWrapper
|
2013-01-06 17:15:04 +00:00
|
|
|
, par2cmdline, par2Support ? false }:
|
|
|
|
|
|
|
|
assert par2Support -> par2cmdline != null;
|
2012-08-05 12:02:05 +00:00
|
|
|
|
2014-12-26 01:30:21 +00:00
|
|
|
let version = "0.26"; in
|
2013-11-13 10:45:40 +00:00
|
|
|
|
2012-08-05 12:02:05 +00:00
|
|
|
with stdenv.lib;
|
2011-08-11 16:33:47 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2014-12-26 01:30:21 +00:00
|
|
|
name = "bup-${version}";
|
2012-08-05 12:02:05 +00:00
|
|
|
|
2014-12-26 01:30:21 +00:00
|
|
|
src = fetchzip {
|
|
|
|
url = "https://github.com/bup/bup/archive/${version}.tar.gz";
|
|
|
|
sha256 = "0g7b0xl3kg0z6rn81fvzl1xnvva305i7pjih2hm68mcj0adk3v0d";
|
2011-08-11 16:33:47 +00:00
|
|
|
};
|
2012-08-05 12:02:05 +00:00
|
|
|
|
2012-07-22 17:50:31 +00:00
|
|
|
buildInputs = [ python git ];
|
2013-09-01 19:32:40 +00:00
|
|
|
nativeBuildInputs = [ pandoc perl makeWrapper ];
|
2012-08-05 12:02:05 +00:00
|
|
|
|
2011-08-11 16:33:47 +00:00
|
|
|
patchPhase = ''
|
2015-01-08 09:26:49 +00:00
|
|
|
patchShebangs .
|
2013-04-06 09:00:37 +00:00
|
|
|
substituteInPlace Makefile --replace "-Werror" ""
|
2011-08-11 16:33:47 +00:00
|
|
|
substituteInPlace Makefile --replace "./format-subst.pl" "perl ./format-subst.pl"
|
2013-01-06 17:15:04 +00:00
|
|
|
'' + optionalString par2Support ''
|
|
|
|
substituteInPlace cmd/fsck-cmd.py --replace "['par2'" "['${par2cmdline}/bin/par2'"
|
2011-08-11 16:33:47 +00:00
|
|
|
'';
|
2012-08-05 12:02:05 +00:00
|
|
|
|
2013-04-06 09:00:37 +00:00
|
|
|
dontAddPrefix = true;
|
|
|
|
|
2012-08-05 12:02:05 +00:00
|
|
|
makeFlags = [
|
|
|
|
"MANDIR=$(out)/share/man"
|
|
|
|
"DOCDIR=$(out)/share/doc/bup"
|
|
|
|
"BINDIR=$(out)/bin"
|
|
|
|
"LIBDIR=$(out)/lib/bup"
|
|
|
|
];
|
|
|
|
|
2013-04-06 09:00:37 +00:00
|
|
|
postInstall = optionalString (elem stdenv.system platforms.linux) ''
|
|
|
|
wrapProgram $out/bin/bup --prefix PYTHONPATH : \
|
|
|
|
${stdenv.lib.concatStringsSep ":"
|
2013-09-01 19:32:40 +00:00
|
|
|
(map (path: "$(toPythonPath ${path})") [ pyxattr pylibacl setuptools fuse ])}
|
2013-04-06 09:00:37 +00:00
|
|
|
'';
|
|
|
|
|
2011-08-11 16:33:47 +00:00
|
|
|
meta = {
|
2013-04-06 09:00:37 +00:00
|
|
|
homepage = "https://github.com/bup/bup";
|
|
|
|
description = "efficient file backup system based on the git packfile format";
|
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
|
|
|
|
|
|
|
longDescription = ''
|
2012-08-05 12:02:05 +00: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 10:51:46 +00:00
|
|
|
|
2013-12-10 22:20:23 +00:00
|
|
|
hydraPlatforms = stdenv.lib.platforms.linux;
|
2014-12-26 01:30:21 +00:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ muflax ];
|
|
|
|
|
2011-08-11 16:33:47 +00:00
|
|
|
};
|
|
|
|
}
|