2010-02-10 19:10:22 +01:00
|
|
|
{ stdenv, fetchurl, python, librsync, gnupg, boto, makeWrapper }:
|
2010-02-10 17:51:01 +01:00
|
|
|
|
2010-02-04 14:42:41 +01:00
|
|
|
stdenv.mkDerivation {
|
2012-12-06 15:59:02 +01:00
|
|
|
name = "duplicity-0.6.20";
|
2010-02-04 14:42:41 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2012-12-06 15:59:02 +01:00
|
|
|
url = "http://code.launchpad.net/duplicity/0.6-series/0.6.20/+download/duplicity-0.6.20.tar.gz";
|
|
|
|
sha256 = "0r0nf7arc3n5ipvvbh7h6ksqzbl236iv5pjpmd5s7lff3xswdl2i";
|
2010-02-04 14:42:41 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
python setup.py install --prefix=$out
|
2010-02-10 17:51:01 +01:00
|
|
|
wrapProgram $out/bin/duplicity \
|
2010-02-10 19:10:22 +01:00
|
|
|
--prefix PYTHONPATH : "$(toPythonPath $out):$(toPythonPath ${boto})" \
|
2010-02-10 17:51:01 +01:00
|
|
|
--prefix PATH : "${gnupg}/bin"
|
2010-06-05 17:06:12 +02:00
|
|
|
wrapProgram $out/bin/rdiffdir \
|
|
|
|
--prefix PYTHONPATH : "$(toPythonPath $out):$(toPythonPath ${boto})" \
|
2010-02-04 14:42:41 +01:00
|
|
|
'';
|
|
|
|
|
2010-02-10 17:51:01 +01:00
|
|
|
buildInputs = [ python librsync makeWrapper ];
|
2010-02-04 14:42:41 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Encrypted bandwidth-efficient backup using the rsync algorithm";
|
2012-02-06 20:45:18 +01:00
|
|
|
homepage = "http://www.nongnu.org/duplicity";
|
2010-02-04 14:42:41 +01:00
|
|
|
license = "GPLv2+";
|
2012-02-06 20:45:18 +01:00
|
|
|
maintainers = with stdenv.lib.maintainers; [viric simons];
|
2010-02-04 14:42:41 +01:00
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
|
|
};
|
|
|
|
}
|