summary refs log tree commit diff
path: root/pkgs/tools/security/pass
diff options
context:
space:
mode:
authorVictor Calvert <calvertvl@gmail.com>2017-05-05 16:08:44 -0400
committerVictor Calvert <calvertvl@gmail.com>2017-05-05 16:09:03 -0400
commit9bc0b12c682774a60da254ea5e2ab439d809d735 (patch)
tree3e5c6de76d2227cd0de0f649af50d33df7639c74 /pkgs/tools/security/pass
parentea929311bb5421bb77cd7c7da63be00737059e4b (diff)
downloadnixlib-9bc0b12c682774a60da254ea5e2ab439d809d735.tar
nixlib-9bc0b12c682774a60da254ea5e2ab439d809d735.tar.gz
nixlib-9bc0b12c682774a60da254ea5e2ab439d809d735.tar.bz2
nixlib-9bc0b12c682774a60da254ea5e2ab439d809d735.tar.lz
nixlib-9bc0b12c682774a60da254ea5e2ab439d809d735.tar.xz
nixlib-9bc0b12c682774a60da254ea5e2ab439d809d735.tar.zst
nixlib-9bc0b12c682774a60da254ea5e2ab439d809d735.zip
pass: 1.7 -> 1.7.1
Diffstat (limited to 'pkgs/tools/security/pass')
-rw-r--r--pkgs/tools/security/pass/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/security/pass/default.nix b/pkgs/tools/security/pass/default.nix
index 83394d984ad7..baa53492d3ee 100644
--- a/pkgs/tools/security/pass/default.nix
+++ b/pkgs/tools/security/pass/default.nix
@@ -13,15 +13,15 @@ assert x11Support -> xclip != null
                   && dmenu != null;
 
 stdenv.mkDerivation rec {
-  version = "1.7";
+  version = "1.7.1";
   name    = "password-store-${version}";
 
   src = fetchurl {
     url    = "http://git.zx2c4.com/password-store/snapshot/${name}.tar.xz";
-    sha256 = "002mw7j0m33bw483rllzhcf41wp3ixka8yma6kqrfaj57jyw66hn";
+    sha256 = "0scqkpll2q8jhzcgcsh9kqz0gwdpvynivqjmmbzax2irjfaiklpn";
   };
 
-  patches = [ ./set-correct-program-name-for-sleep.patch 
+  patches = [ ./set-correct-program-name-for-sleep.patch
             ] ++ stdenv.lib.optional stdenv.isDarwin ./no-darwin-getopt.patch;
 
   nativeBuildInputs = [ makeWrapper ];