Mario Rodas 2024-03-17 04:20:00 +00:00
parent 28706e6b16
commit 4411c125fc
2 changed files with 15 additions and 4 deletions

View File

@ -2,21 +2,30 @@
, makeWrapper
, buildGoModule
, fetchFromGitHub
, fetchpatch
, gopass
}:
buildGoModule rec {
pname = "gopass-summon-provider";
version = "1.15.11";
version = "1.15.12";
src = fetchFromGitHub {
owner = "gopasspw";
repo = "gopass-summon-provider";
rev = "v${version}";
hash = "sha256-rbfzmr6HtGUBCjO9jkocSghTAN+aNXTsSsMC38HqgW0=";
hash = "sha256-gvgHqeVB+4d8UJhMv3CYYidttCcaRPkgI7PXasv7pCI=";
};
vendorHash = "sha256-bit4+YgQ+Y/TA2q7KdZwYTE3ZKBwL6tUam+tHzBMiQw=";
patches = [
# go mod tidy. Remove with next release
(fetchpatch {
url = "https://github.com/gopasspw/gopass-summon-provider/commit/b3085cab14588cb6a5a383033947d9266fe0cd56.patch";
hash = "sha256-8mvJqejqmuOloj9mW9zzsE/Xr0DtPhJeDItzVFVv4+c=";
})
];
vendorHash = "sha256-y1PH0+tt/kcHw2I4LWD2XfLud3JtsYqrRd/yVRPdaTA=";
subPackages = [ "." ];

View File

@ -4040,7 +4040,9 @@ with pkgs;
git-credential-gopass = callPackage ../tools/security/gopass/git-credential.nix { };
gopass-summon-provider = callPackage ../tools/security/gopass/summon.nix { };
gopass-summon-provider = callPackage ../tools/security/gopass/summon.nix {
buildGoModule = buildGo122Module;
};
gosh = callPackage ../tools/security/gosh { };