nixpkgs/pkgs/tools/backup/duplicity/default.nix
Lluís Batlle i Rossell c83ce140e1 Adding 'duplicity', and its dependency 'librsync'
svn path=/nixpkgs/trunk/; revision=19813
2010-02-04 13:42:41 +00:00

25 lines
773 B
Nix

{stdenv, fetchurl, python, librsync, makeWrapper}:
stdenv.mkDerivation {
name = "duplicity-0.6.06";
src = fetchurl {
url = http://code.launchpad.net/duplicity/0.6-series/0.6.06/+download/duplicity-0.6.06.tar.gz;
sha256 = "1g284y24061krigs386x5s7vs7cnwhah7g1mfk9jfn3gzsidv70g";
};
installPhase = ''
python setup.py install --prefix=$out
wrapProgram $out/bin/duplicity --prefix PYTHONPATH : "$(toPythonPath $out)"
'';
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;
};
}