about summary refs log tree commit diff
path: root/pkgs/tools/security/gopass
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2024-03-17 04:20:00 +0000
committerMario Rodas <marsam@users.noreply.github.com>2024-03-17 04:20:00 +0000
commit5642844096f882eab82d58b60aa82fe1d8a5b1cd (patch)
tree115049738c46ab33af7aa2b9da6cf979f37061d9 /pkgs/tools/security/gopass
parent4411c125fc1e1a3c85749c671539c23fb0d66c7f (diff)
git-credential-gopass: 1.15.11 -> 1.15.12
Diff: https://github.com/gopasspw/git-credential-gopass/compare/v1.15.11...v1.15.12

Changelog: https://github.com/gopasspw/git-credential-gopass/blob/v1.15.12/CHANGELOG.md
Diffstat (limited to 'pkgs/tools/security/gopass')
-rw-r--r--pkgs/tools/security/gopass/git-credential.nix15
1 files changed, 12 insertions, 3 deletions
diff --git a/pkgs/tools/security/gopass/git-credential.nix b/pkgs/tools/security/gopass/git-credential.nix
index 8654d05d9d13a..cf05591bbbfce 100644
--- a/pkgs/tools/security/gopass/git-credential.nix
+++ b/pkgs/tools/security/gopass/git-credential.nix
@@ -2,21 +2,30 @@
 , makeWrapper
 , buildGoModule
 , fetchFromGitHub
+, fetchpatch
 , gopass
 }:
 
 buildGoModule rec {
   pname = "git-credential-gopass";
-  version = "1.15.11";
+  version = "1.15.12";
 
   src = fetchFromGitHub {
     owner = "gopasspw";
     repo = "git-credential-gopass";
     rev = "v${version}";
-    hash = "sha256-qnWgrpcj3DZQu5haP/5xqoO7eogkRjBmc8XpgFFNT6I=";
+    hash = "sha256-5j5+so4LT3x+epEZf9OVn/kLNHBk2ENQxxRrzbziEA4=";
   };
 
-  vendorHash = "sha256-bit4+YgQ+Y/TA2q7KdZwYTE3ZKBwL6tUam+tHzBMiQw=";
+  patches = [
+    # go mod tidy. Remove with next release
+    (fetchpatch {
+      url = "https://github.com/gopasspw/git-credential-gopass/commit/88d11d2b1b49f00b7fba9a917cf90f7ea14c9d1b.patch";
+      hash = "sha256-mXxI9GXan0zYL8msL83VLqxOp4oAOwMyCOFaUOLAg5E=";
+    })
+  ];
+
+  vendorHash = "sha256-y1PH0+tt/kcHw2I4LWD2XfLud3JtsYqrRd/yVRPdaTA=";
 
   subPackages = [ "." ];