summary refs log tree commit diff
path: root/pkgs/tools/backup/bup
diff options
context:
space:
mode:
authorEvan Danaher <github@edanaher.net>2017-04-07 15:44:10 -0400
committerEvan Danaher <github@edanaher.net>2017-04-07 15:44:10 -0400
commit82a63385fb82f87efaf8456011fc5b296f50c196 (patch)
tree28c847eb5dca313504a4bc484e3844964556d0a9 /pkgs/tools/backup/bup
parent0a6a06346a3c928a3115dfd700993c5c06b0a1e9 (diff)
downloadnixpkgs-82a63385fb82f87efaf8456011fc5b296f50c196.tar
nixpkgs-82a63385fb82f87efaf8456011fc5b296f50c196.tar.gz
nixpkgs-82a63385fb82f87efaf8456011fc5b296f50c196.tar.bz2
nixpkgs-82a63385fb82f87efaf8456011fc5b296f50c196.tar.lz
nixpkgs-82a63385fb82f87efaf8456011fc5b296f50c196.tar.xz
nixpkgs-82a63385fb82f87efaf8456011fc5b296f50c196.tar.zst
nixpkgs-82a63385fb82f87efaf8456011fc5b296f50c196.zip
bup: 0.29 -> 0.29.1
This pretty much only has a single fix for gc --threshold 0:
https://github.com/bup/bup/blob/master/note/0.29.1-from-0.29.md
Diffstat (limited to 'pkgs/tools/backup/bup')
-rw-r--r--pkgs/tools/backup/bup/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/backup/bup/default.nix b/pkgs/tools/backup/bup/default.nix
index baf9e4f4e39..8a81e737ccc 100644
--- a/pkgs/tools/backup/bup/default.nix
+++ b/pkgs/tools/backup/bup/default.nix
@@ -5,7 +5,7 @@
 
 assert par2Support -> par2cmdline != null;
 
-let version = "0.29"; in
+let version = "0.29.1"; in
 
 with stdenv.lib;
 
@@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
     repo = "bup";
     owner = "bup";
     rev = version;
-    sha256 = "1cc9kpq9bpln89m4ni6wqzh4c8zwxmgnhaibdxxfs5pk2mpl3ds5";
+    sha256 = "0wdr399jf64zzzsdvldhrwvnh5xpbghjvslr1j2cwr5y4i36znxf";
   };
 
   buildInputs = [ git python2Packages.python ];