summary refs log tree commit diff
path: root/pkgs/tools/backup/duplicity
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2014-01-13 16:48:04 +0100
committerPeter Simons <simons@cryp.to>2014-01-13 17:05:45 +0100
commit558442e5593d8a6f6da1ceb00225ad7ba60ac5c0 (patch)
tree15af7f4492e52e685cb16dc9a2f9bb0aacb63696 /pkgs/tools/backup/duplicity
parent68eea9c19eb80a6472d6190a9632f7c233b9752b (diff)
downloadnixpkgs-558442e5593d8a6f6da1ceb00225ad7ba60ac5c0.tar
nixpkgs-558442e5593d8a6f6da1ceb00225ad7ba60ac5c0.tar.gz
nixpkgs-558442e5593d8a6f6da1ceb00225ad7ba60ac5c0.tar.bz2
nixpkgs-558442e5593d8a6f6da1ceb00225ad7ba60ac5c0.tar.lz
nixpkgs-558442e5593d8a6f6da1ceb00225ad7ba60ac5c0.tar.xz
nixpkgs-558442e5593d8a6f6da1ceb00225ad7ba60ac5c0.tar.zst
nixpkgs-558442e5593d8a6f6da1ceb00225ad7ba60ac5c0.zip
duplicity: update to version 0.6.22
Diffstat (limited to 'pkgs/tools/backup/duplicity')
-rw-r--r--pkgs/tools/backup/duplicity/default.nix9
1 files changed, 6 insertions, 3 deletions
diff --git a/pkgs/tools/backup/duplicity/default.nix b/pkgs/tools/backup/duplicity/default.nix
index e10b44d63c8..48f2757db86 100644
--- a/pkgs/tools/backup/duplicity/default.nix
+++ b/pkgs/tools/backup/duplicity/default.nix
@@ -1,11 +1,14 @@
 { stdenv, fetchurl, python, librsync, ncftp, gnupg, boto, makeWrapper }:
 
+let
+  version = "0.6.22";
+in
 stdenv.mkDerivation {
-  name = "duplicity-0.6.21";
+  name = "duplicity-${version}";
 
   src = fetchurl {
-    url = "http://code.launchpad.net/duplicity/0.6-series/0.6.21/+download/duplicity-0.6.21.tar.gz";
-    sha256 = "01ppxzghnig7al9cwi8ap95y0d3j5n0vf3ag06iw3ysiq6k8lqm3";
+    url = "http://code.launchpad.net/duplicity/0.6-series/${version}/+download/duplicity-${version}.tar.gz";
+    sha256 = "04jskh1j85s35vfzm9gylpl7ysn5njbl0gcg92bhc7v88l29nj3g";
   };
 
   installPhase = ''