2021-01-15 09:19:50 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, makeWrapper
|
2023-07-07 08:11:53 +01:00
|
|
|
, perl, pandoc, python3, git
|
2017-04-07 20:47:03 +01:00
|
|
|
, par2cmdline ? null, par2Support ? true
|
2016-05-28 01:01:15 +01:00
|
|
|
}:
|
2013-01-06 17:15:04 +00:00
|
|
|
|
|
|
|
assert par2Support -> par2cmdline != null;
|
2012-08-05 13:02:05 +01:00
|
|
|
|
2023-07-07 08:11:53 +01:00
|
|
|
let
|
|
|
|
version = "0.33.2";
|
|
|
|
|
|
|
|
pythonDeps = with python3.pkgs; [ setuptools tornado ]
|
|
|
|
++ lib.optionals (!stdenv.isDarwin) [ pyxattr pylibacl fuse ];
|
|
|
|
in
|
2013-11-13 10:45:40 +00:00
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
stdenv.mkDerivation {
|
2019-08-13 22:52:01 +01:00
|
|
|
pname = "bup";
|
|
|
|
inherit version;
|
2012-08-05 13:02:05 +01:00
|
|
|
|
2016-05-28 01:01:15 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
repo = "bup";
|
|
|
|
owner = "bup";
|
|
|
|
rev = version;
|
2023-07-07 08:11:53 +01:00
|
|
|
hash = "sha256-DDVCrY4SFqzKukXm8rIq90xAW2U+yYyhyPmUhslMMWI=";
|
2011-08-11 17:33:47 +01:00
|
|
|
};
|
2012-08-05 13:02:05 +01:00
|
|
|
|
2023-07-07 08:11:53 +01:00
|
|
|
buildInputs = [ git python3 ];
|
2013-09-01 20:32:40 +01:00
|
|
|
nativeBuildInputs = [ pandoc perl makeWrapper ];
|
2012-08-05 13:02:05 +01:00
|
|
|
|
2023-07-07 08:11:53 +01:00
|
|
|
postPatch = "patchShebangs .";
|
2012-08-05 13:02:05 +01:00
|
|
|
|
2013-04-06 10:00:37 +01:00
|
|
|
dontAddPrefix = true;
|
|
|
|
|
2012-08-05 13:02:05 +01:00
|
|
|
makeFlags = [
|
|
|
|
"MANDIR=$(out)/share/man"
|
|
|
|
"DOCDIR=$(out)/share/doc/bup"
|
|
|
|
"BINDIR=$(out)/bin"
|
|
|
|
"LIBDIR=$(out)/lib/bup"
|
|
|
|
];
|
|
|
|
|
2023-12-03 18:36:13 +00:00
|
|
|
env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.cc.isClang "-Wno-error=implicit-function-declaration -Wno-error=implicit-int";
|
2023-07-10 12:23:05 +01:00
|
|
|
|
2016-05-28 01:01:15 +01:00
|
|
|
postInstall = ''
|
|
|
|
wrapProgram $out/bin/bup \
|
2023-07-07 08:11:53 +01:00
|
|
|
--prefix PATH : ${lib.makeBinPath [ git par2cmdline ]} \
|
|
|
|
--prefix NIX_PYTHONPATH : ${lib.makeSearchPathOutput "lib" python3.sitePackages pythonDeps}
|
2013-04-06 10:00:37 +01:00
|
|
|
'';
|
|
|
|
|
2023-01-24 16:35:54 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/bup/bup";
|
2016-05-28 01:01:15 +01:00
|
|
|
description = "Efficient file backup system based on the git packfile format";
|
|
|
|
license = licenses.gpl2Plus;
|
2013-04-06 10:00:37 +01:00
|
|
|
|
|
|
|
longDescription = ''
|
2012-08-05 13:02:05 +01: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 11:51:46 +01:00
|
|
|
|
2017-05-19 12:54:28 +01:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2023-07-07 11:26:45 +01:00
|
|
|
maintainers = with maintainers; [ rnhmjoj ];
|
2011-08-11 17:33:47 +01:00
|
|
|
};
|
|
|
|
}
|