duplicity: update to 0.6.24.

This commit is contained in:
Lluís Batlle i Rossell 2014-09-01 11:34:19 +02:00
parent f5b4eacad6
commit 3a663f679f

View File

@ -1,14 +1,15 @@
{ stdenv, fetchurl, python, librsync, ncftp, gnupg, boto, makeWrapper, lockfile }: { stdenv, fetchurl, python, librsync, ncftp, gnupg, boto, makeWrapper
, lockfile, setuptools }:
let let
version = "0.6.23"; version = "0.6.24";
in in
stdenv.mkDerivation { stdenv.mkDerivation {
name = "duplicity-${version}"; name = "duplicity-${version}";
src = fetchurl { src = fetchurl {
url = "http://code.launchpad.net/duplicity/0.6-series/${version}/+download/duplicity-${version}.tar.gz"; url = "http://code.launchpad.net/duplicity/0.6-series/${version}/+download/duplicity-${version}.tar.gz";
sha256 = "0q0ckkmyq9z7xfbb1jajflmbzjwxpcjkkiab43rxrplm0ghz25vs"; sha256 = "0l14nrhbgkyjgvh339bbhnm6hrdwrjadphq1jmpi0mcgcdbdfh8x";
}; };
installPhase = '' installPhase = ''
@ -20,7 +21,7 @@ stdenv.mkDerivation {
--prefix PYTHONPATH : "$(toPythonPath $out):$(toPythonPath ${boto}):$(toPythonPath ${lockfile})" \ --prefix PYTHONPATH : "$(toPythonPath $out):$(toPythonPath ${boto}):$(toPythonPath ${lockfile})" \
''; '';
buildInputs = [ python librsync makeWrapper ]; buildInputs = [ python librsync makeWrapper setuptools ];
meta = { meta = {
description = "Encrypted bandwidth-efficient backup using the rsync algorithm"; description = "Encrypted bandwidth-efficient backup using the rsync algorithm";