summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--pkgs/tools/backup/store-backup/default.nix10
1 files changed, 6 insertions, 4 deletions
diff --git a/pkgs/tools/backup/store-backup/default.nix b/pkgs/tools/backup/store-backup/default.nix
index c986adeafdc..ba8df477148 100644
--- a/pkgs/tools/backup/store-backup/default.nix
+++ b/pkgs/tools/backup/store-backup/default.nix
@@ -12,17 +12,19 @@
 let dummyMount = writeScriptBin "mount" "#!/bin/sh";
 in
 
-stdenv.mkDerivation {
+stdenv.mkDerivation rec {
 
-  name = "store-backup-3.4";
+  version = "3.5";
+
+  name = "store-backup-${version}";
 
   enableParallelBuilding = true;
 
   buildInputs = [ perl makeWrapper ];
 
   src = fetchurl {
-    url = http://download.savannah.gnu.org/releases/storebackup/storeBackup-3.4.tar.bz2;
-    sha256 = "101k3nhyfjj8y8hg0v0xqxsr4vlcfkmlczgbihvlv722fb7n5gi3";
+    url = "http://download.savannah.gnu.org/releases/storebackup/storeBackup-${version}.tar.bz2";
+    sha256 = "0y4gzssc93x6y93mjsxm5b5cdh68d7ffa43jf6np7s7c99xxxz78";
   };
 
   installPhase = ''