From 9bc0b12c682774a60da254ea5e2ab439d809d735 Mon Sep 17 00:00:00 2001 From: Victor Calvert Date: Fri, 5 May 2017 16:08:44 -0400 Subject: [PATCH] pass: 1.7 -> 1.7.1 --- pkgs/tools/security/pass/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/security/pass/default.nix b/pkgs/tools/security/pass/default.nix index 83394d984ad..baa53492d3e 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 ];