summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2012-02-06 19:45:18 +0000
committerPeter Simons <simons@cryp.to>2012-02-06 19:45:18 +0000
commitfebe7260207698eef44c2bb335f3991df1f679d9 (patch)
tree408f07f1e3b53cf4928f60a2baded7cb19c21f39 /pkgs/tools
parent796f0ad5bc03b7eaf47b77619f109fec098337ab (diff)
downloadnixpkgs-febe7260207698eef44c2bb335f3991df1f679d9.tar
nixpkgs-febe7260207698eef44c2bb335f3991df1f679d9.tar.gz
nixpkgs-febe7260207698eef44c2bb335f3991df1f679d9.tar.bz2
nixpkgs-febe7260207698eef44c2bb335f3991df1f679d9.tar.lz
nixpkgs-febe7260207698eef44c2bb335f3991df1f679d9.tar.xz
nixpkgs-febe7260207698eef44c2bb335f3991df1f679d9.tar.zst
nixpkgs-febe7260207698eef44c2bb335f3991df1f679d9.zip
duplicity: updated to version 0.6.17
svn path=/nixpkgs/trunk/; revision=32086
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/backup/duplicity/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/tools/backup/duplicity/default.nix b/pkgs/tools/backup/duplicity/default.nix
index c4cc84ba34f..bb5ae55b904 100644
--- a/pkgs/tools/backup/duplicity/default.nix
+++ b/pkgs/tools/backup/duplicity/default.nix
@@ -1,11 +1,11 @@
 { stdenv, fetchurl, python, librsync, gnupg, boto, makeWrapper }:
 
 stdenv.mkDerivation {
-  name = "duplicity-0.6.16";
+  name = "duplicity-0.6.17";
 
   src = fetchurl {
-    url = http://code.launchpad.net/duplicity/0.6-series/0.6.16/+download/duplicity-0.6.16.tar.gz;
-    sha256 = "0n63857swqnq7i697p615dp37bsd5bj0gvlj5ng41584zzjmv328";
+    url = "http://code.launchpad.net/duplicity/0.6-series/0.6.17/+download/duplicity-0.6.17.tar.gz";
+    sha256 = "0n54fw55v4h0cjspgh9nhss5w18bfrib9fckgkk2fldi3835c7l9";
   };
 
   installPhase = ''
@@ -21,9 +21,9 @@ stdenv.mkDerivation {
 
   meta = {
     description = "Encrypted bandwidth-efficient backup using the rsync algorithm";
-    homepage = http://www.nongnu.org/duplicity;
+    homepage = "http://www.nongnu.org/duplicity";
     license = "GPLv2+";
-    maintainers = with stdenv.lib.maintainers; [viric];
+    maintainers = with stdenv.lib.maintainers; [viric simons];
     platforms = with stdenv.lib.platforms; linux;
   };
 }