nixpkgs/pkgs/tools/backup/duplicity/default.nix
Lluís Batlle i Rossell 056ff2705a Making duplicity's rdiffdir work (it had to be wrapped)
svn path=/nixpkgs/trunk/; revision=22157
2010-06-05 15:06:12 +00:00

30 lines
978 B
Nix

{ stdenv, fetchurl, python, librsync, gnupg, boto, makeWrapper }:
stdenv.mkDerivation {
name = "duplicity-0.6.08b";
src = fetchurl {
url = http://code.launchpad.net/duplicity/0.6-series/0.6.08b/+download/duplicity-0.6.08b.tar.gz;
sha256 = "03bahzdq2dqngiqadfy1jwzn8an1fm46nl9frd0v6a4c52mr1g8i";
};
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;
};
}