about summary refs log tree commit diff
path: root/pkgs/tools/security/cosign
diff options
context:
space:
mode:
authorThomas Gerbet <thomas@gerbet.me>2022-09-22 08:42:43 +0200
committerThomas Gerbet <thomas@gerbet.me>2022-09-22 08:42:43 +0200
commita2784b942f8606ef59f3d1cfdf17713144d9f965 (patch)
tree31da97f841f80db1ed276fbf704ae3ee5698fee1 /pkgs/tools/security/cosign
parentac09134473a6abf5f3f21b6c91c783bc4f91ed3b (diff)
cosign: 1.12.0 -> 1.12.1
https://github.com/sigstore/cosign/releases/tag/v1.12.1
Diffstat (limited to 'pkgs/tools/security/cosign')
-rw-r--r--pkgs/tools/security/cosign/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/security/cosign/default.nix b/pkgs/tools/security/cosign/default.nix
index a417a35c5a618..6cb20d65471c2 100644
--- a/pkgs/tools/security/cosign/default.nix
+++ b/pkgs/tools/security/cosign/default.nix
@@ -2,13 +2,13 @@
 
 buildGoModule rec {
   pname = "cosign";
-  version = "1.12.0";
+  version = "1.12.1";
 
   src = fetchFromGitHub {
     owner = "sigstore";
     repo = pname;
     rev = "v${version}";
-    sha256 = "sha256-TfPxLSUVs/b9krexTa1wzBkaUAL8xggfpJOlxdHLzjA=";
+    sha256 = "sha256-IM0lCgPx3Hy8ZlTRmuLv0CGwLiVqjNTnwfiemahIJyM=";
   };
 
   buildInputs = lib.optional (stdenv.isLinux && pivKeySupport) (lib.getDev pcsclite)
@@ -16,7 +16,7 @@ buildGoModule rec {
 
   nativeBuildInputs = [ pkg-config installShellFiles ];
 
-  vendorSha256 = "sha256-gL5VCFcKz+hrwJ+KZifgBtgrgpKcBbvE4mFAg0LnOgc=";
+  vendorSha256 = "sha256-B6KHT6RII6cUWBCC9w0yQTGwD4GEnU27UFet7J70C64=";
 
   subPackages = [
     "cmd/cosign"