forked from mirrors/nixpkgs
duplicity: add dependency on ncftp (makes ftp:// work)
ncftp increases the closure size with 5 MiB. Now it is at 310 MiB.
This commit is contained in:
parent
7a2bbda91d
commit
8045289199
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchurl, python, librsync, gnupg, boto, makeWrapper }:
|
||||
{ stdenv, fetchurl, python, librsync, ncftp, gnupg, boto, makeWrapper }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "duplicity-0.6.21";
|
||||
|
@ -12,7 +12,7 @@ stdenv.mkDerivation {
|
|||
python setup.py install --prefix=$out
|
||||
wrapProgram $out/bin/duplicity \
|
||||
--prefix PYTHONPATH : "$(toPythonPath $out):$(toPythonPath ${boto})" \
|
||||
--prefix PATH : "${gnupg}/bin"
|
||||
--prefix PATH : "${gnupg}/bin:${ncftp}/bin"
|
||||
wrapProgram $out/bin/rdiffdir \
|
||||
--prefix PYTHONPATH : "$(toPythonPath $out):$(toPythonPath ${boto})" \
|
||||
'';
|
||||
|
|
Loading…
Reference in a new issue