nixpkgs/pkgs/tools/backup/duplicity/default.nix
Evgeny Egorochkin 64ee527151 Duplicity: version bump
svn path=/nixpkgs/trunk/; revision=30352
2011-11-09 13:01:46 +00:00

30 lines
975 B
Nix

{ stdenv, fetchurl, python, librsync, gnupg, boto, makeWrapper }:
stdenv.mkDerivation {
name = "duplicity-0.6.16";
src = fetchurl {
url = http://code.launchpad.net/duplicity/0.6-series/0.6.16/+download/duplicity-0.6.16.tar.gz;
sha256 = "0n63857swqnq7i697p615dp37bsd5bj0gvlj5ng41584zzjmv328";
};
installPhase = ''
python setup.py install --prefix=$out
wrapProgram $out/bin/duplicity \
--prefix PYTHONPATH : "$(toPythonPath $out):$(toPythonPath ${boto})" \
--prefix PATH : "${gnupg}/bin"
wrapProgram $out/bin/rdiffdir \
--prefix PYTHONPATH : "$(toPythonPath $out):$(toPythonPath ${boto})" \
'';
buildInputs = [ python librsync makeWrapper ];
meta = {
description = "Encrypted bandwidth-efficient backup using the rsync algorithm";
homepage = http://www.nongnu.org/duplicity;
license = "GPLv2+";
maintainers = with stdenv.lib.maintainers; [viric];
platforms = with stdenv.lib.platforms; linux;
};
}