2013-01-06 17:15:04 +00:00
|
|
|
{ stdenv, fetchgit, python, pyxattr, pylibacl, setuptools, fuse, git, perl, pandoc, makeWrapper
|
2013-09-01 00:22:01 +00:00
|
|
|
, diffutils, writeTextFile, rsync
|
2013-01-06 17:15:04 +00:00
|
|
|
, par2cmdline, par2Support ? false }:
|
|
|
|
|
2013-09-01 00:22:01 +00:00
|
|
|
# keep in mind you cannot prune older revisions yet! (2013-06)
|
|
|
|
|
2013-01-06 17:15:04 +00:00
|
|
|
assert par2Support -> par2cmdline != null;
|
2012-08-05 12:02:05 +00:00
|
|
|
|
|
|
|
with stdenv.lib;
|
2011-08-11 16:33:47 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2013-04-06 09:00:37 +00:00
|
|
|
name = "bup-0.25-rc1-107-g96c6fa2";
|
2012-08-05 12:02:05 +00:00
|
|
|
|
2012-07-22 17:50:31 +00:00
|
|
|
src = fetchgit {
|
2012-12-30 10:12:58 +00:00
|
|
|
url = "https://github.com/bup/bup.git";
|
2013-09-01 00:22:01 +00:00
|
|
|
rev = "98a8e2ebb775386cb7e66b1953df46cdbd4b4bd3";
|
|
|
|
sha256 = "ab01c70f0caf993c0c05ec3a1008b5940b433bf2f7bd4e9b995d85e81958c1b7";
|
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 00:22:01 +00:00
|
|
|
nativeBuildInputs = [ pandoc perl makeWrapper rsync ];
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2012-08-05 12:02:05 +00:00
|
|
|
|
2011-08-11 16:33:47 +00:00
|
|
|
patchPhase = ''
|
2013-04-06 09:00:37 +00:00
|
|
|
substituteInPlace Makefile --replace "-Werror" ""
|
|
|
|
for f in "cmd/"* "lib/tornado/"* "lib/tornado/test/"* "t/"* wvtest.py main.py; do
|
|
|
|
test -f $f || continue
|
2011-08-11 16:33:47 +00:00
|
|
|
substituteInPlace $f --replace "/usr/bin/env python" "${python}/bin/python"
|
|
|
|
done
|
|
|
|
substituteInPlace Makefile --replace "./format-subst.pl" "perl ./format-subst.pl"
|
2013-09-01 00:22:01 +00:00
|
|
|
for t in t/*.sh t/configure-sampledata t/compare-trees; do
|
|
|
|
substituteInPlace $t --replace "/usr/bin/env bash" "$(type -p bash)"
|
|
|
|
done
|
|
|
|
substituteInPlace wvtestrun --replace "/usr/bin/env perl" "${perl}/bin/perl"
|
|
|
|
|
|
|
|
substituteInPlace t/test.sh --replace "/bin/pwd" "$(type -P pwd)"
|
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 00:22:01 +00:00
|
|
|
(map (path: "$(toPythonPath ${path})") [ pyxattr pylibacl setuptools fuse python.modules.readline ])}
|
|
|
|
|
|
|
|
## test it
|
|
|
|
make test
|
|
|
|
|
|
|
|
# if make test passes the following probably passes, too
|
|
|
|
backup_init(){
|
|
|
|
export BUP_DIR=$TMP/bup
|
|
|
|
PATH=$out/bin:$PATH
|
|
|
|
bup init
|
|
|
|
}
|
|
|
|
backup_make(){
|
|
|
|
( cd "$1"; tar -cvf - .) | bup split -n backup
|
|
|
|
}
|
|
|
|
backup_restore_latest(){
|
|
|
|
bup join backup | ( cd "$1"; tar -xf - )
|
|
|
|
}
|
|
|
|
backup_verify_integrity_latest(){
|
|
|
|
bup fsck
|
|
|
|
}
|
|
|
|
backup_verify_latest(){
|
|
|
|
# maybe closest would be to mount or use the FTP like server ..
|
|
|
|
true
|
|
|
|
}
|
|
|
|
|
|
|
|
. ${import ../test-case.nix { inherit diffutils writeTextFile; }}
|
|
|
|
backup_test backup 100M
|
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
|
|
|
|
|
|
|
maintainers = [ stdenv.lib.maintainers.simons ];
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2011-08-11 16:33:47 +00:00
|
|
|
};
|
|
|
|
}
|