nixpkgs/pkgs/tools/backup/bup/default.nix

65 lines
1.7 KiB
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, fetchurl, makeWrapper
, perl, pandoc, pythonPackages, git
, par2cmdline ? null, par2Support ? false
}:
assert par2Support -> par2cmdline != null;
2016-09-13 07:01:16 +02:00
let version = "0.28.1"; in
with stdenv.lib;
2015-07-31 01:20:04 +02:00
stdenv.mkDerivation rec {
name = "bup-${version}";
src = fetchFromGitHub {
repo = "bup";
owner = "bup";
rev = version;
2016-09-13 07:01:16 +02:00
sha256 = "1hsxzrjvqa3pd74vmz8agiiwynrzynp1i726h0fzdsakc4adya4l";
};
buildInputs = [ git pythonPackages.python ];
nativeBuildInputs = [ pandoc perl makeWrapper ];
2015-07-31 01:20:04 +02:00
postPatch = ''
patchShebangs .
substituteInPlace Makefile --replace "-Werror" ""
substituteInPlace Makefile --replace "./format-subst.pl" "${perl}/bin/perl ./format-subst.pl"
'' + optionalString par2Support ''
substituteInPlace cmd/fsck-cmd.py --replace "['par2'" "['${par2cmdline}/bin/par2'"
'';
dontAddPrefix = true;
makeFlags = [
"MANDIR=$(out)/share/man"
"DOCDIR=$(out)/share/doc/bup"
"BINDIR=$(out)/bin"
"LIBDIR=$(out)/lib/bup"
];
postInstall = ''
wrapProgram $out/bin/bup \
--prefix PATH : ${git}/bin \
--prefix PYTHONPATH : ${concatStringsSep ":" (map (x: "$(toPythonPath ${x})")
(with pythonPackages;
[ setuptools tornado ]
++ stdenv.lib.optionals (!stdenv.isDarwin) [ pyxattr pylibacl fuse ]))}
'';
meta = {
homepage = "https://github.com/bup/bup";
description = "Efficient file backup system based on the git packfile format";
license = licenses.gpl2Plus;
longDescription = ''
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
platforms = platforms.linux;
maintainers = with maintainers; [ muflax ];
};
}