gopass: 1.13.1 → 1.14.0

This commit is contained in:
Nikolay Korotkiy 2022-03-16 20:00:28 +03:00
parent 5416f2ecd5
commit 314407980e
No known key found for this signature in database
GPG Key ID: D1DE6D7F693663A5
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

@ -2028,7 +2028,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 { };