3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/backup/duplicity/default.nix

34 lines
1.4 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, pythonPackages, librsync, ncftp, gnupg, makeWrapper
}:
2014-01-13 15:48:04 +00:00
let
2016-05-28 19:54:47 +01:00
version = "0.7.07.1";
inherit (pythonPackages) boto ecdsa lockfile paramiko pycrypto python setuptools;
in stdenv.mkDerivation {
2014-01-13 15:48:04 +00:00
name = "duplicity-${version}";
src = fetchurl {
2015-03-30 03:45:12 +01:00
url = "http://code.launchpad.net/duplicity/0.7-series/${version}/+download/duplicity-${version}.tar.gz";
2016-05-28 19:54:47 +01:00
sha256 = "594c6d0e723e56f8a7114d57811c613622d535cafdef4a3643a4d4c89c1904f8";
};
installPhase = ''
python setup.py install --prefix=$out
wrapProgram $out/bin/duplicity \
--prefix PYTHONPATH : "$(toPythonPath $out):$(toPythonPath ${pycrypto}):$(toPythonPath ${ecdsa}):$(toPythonPath ${paramiko}):$(toPythonPath ${boto}):$(toPythonPath ${lockfile})" \
2016-08-22 23:06:51 +01:00
--prefix PATH : "${stdenv.lib.makeBinPath [ gnupg ncftp ]}"
wrapProgram $out/bin/rdiffdir \
--prefix PYTHONPATH : "$(toPythonPath $out):$(toPythonPath ${pycrypto}):$(toPythonPath ${ecdsa}):$(toPythonPath ${paramiko}):$(toPythonPath ${boto}):$(toPythonPath ${lockfile})"
'';
2014-09-01 10:34:19 +01:00
buildInputs = [ python librsync makeWrapper setuptools ];
meta = {
description = "Encrypted bandwidth-efficient backup using the rsync algorithm";
homepage = "http://www.nongnu.org/duplicity";
license = stdenv.lib.licenses.gpl2Plus;
maintainers = with stdenv.lib.maintainers; [viric peti];
platforms = with stdenv.lib.platforms; linux;
};
}