Merge pull request #164460 from sikmir/gopass

This commit is contained in:
Sandro 2022-03-27 14:51:05 +02:00 committed by GitHub
commit c42bc84ecb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 4 deletions

View file

@ -13,7 +13,7 @@
buildGoModule rec {
pname = "gopass";
version = "1.13.1";
version = "1.14.0";
nativeBuildInputs = [ installShellFiles makeWrapper ];
@ -21,10 +21,10 @@ buildGoModule rec {
owner = "gopasspw";
repo = pname;
rev = "v${version}";
sha256 = "sha256-g/ICT489uW3a5EnsxJPYOnV+yeOFfaFPMowdIK0M1Fc=";
sha256 = "sha256-swvZrsRuevBe8lVg67J0R9u3GB/Wc2ZR54Y6j1Bsa3E=";
};
vendorSha256 = "sha256-HGc6jUp4WO5P5dwfa0r7+X78a8us9fWrf+/IOotZHqk=";
vendorSha256 = "sha256-Fq9jEJm65efBL5ShcB/XCM70UVDO/8STbbTOOHXrpSk=";
subPackages = [ "." ];

View file

@ -2045,7 +2045,9 @@ with pkgs;
go-audit = callPackage ../tools/system/go-audit { };
gopass = callPackage ../tools/security/gopass { };
gopass = callPackage ../tools/security/gopass {
buildGoModule = buildGo118Module;
};
gopass-jsonapi = callPackage ../tools/security/gopass/jsonapi.nix { };