about summary refs log tree commit diff
path: root/pkgs/tools/security/cosign
diff options
context:
space:
mode:
authorThomas Gerbet <thomas@gerbet.me>2022-10-17 21:54:43 +0200
committerThomas Gerbet <thomas@gerbet.me>2022-10-17 21:54:43 +0200
commit5e50e2bc4a193f9fed98a556a6107a076f7c25d4 (patch)
tree9714ed2fc76cb67f5d09468f8a2d58c9e8dd6f3d /pkgs/tools/security/cosign
parentb24ba297b5113c5f00ce2e25b2f69a46c441d09f (diff)
cosign: 1.13.0 -> 1.13.1
https://github.com/sigstore/cosign/releases/tag/v1.13.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 6cfd46954e328..fc1b583ccc7fb 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.13.0";
+  version = "1.13.1";
 
   src = fetchFromGitHub {
     owner = "sigstore";
     repo = pname;
     rev = "v${version}";
-    sha256 = "sha256-EZHT6Ut7fI9Sx7U664r4ZvzZCH1hu9acnGvUyn8XgSw=";
+    sha256 = "sha256-R7MhfAnVJJ2NK8zV408xAk8Q6aWn9Gw6DOmFFX26x1Q=";
   };
 
   buildInputs = lib.optional (stdenv.isLinux && pivKeySupport) (lib.getDev pcsclite)
@@ -16,7 +16,7 @@ buildGoModule rec {
 
   nativeBuildInputs = [ pkg-config installShellFiles ];
 
-  vendorSha256 = "sha256-9XRORuHx4bZn9odMD+prg/dPBkUmVqBNQYjQGCQVqiw=";
+  vendorSha256 = "sha256-DpPEDttQnRGHVNiIpMGj14KvZEGR0Y80sZOffjQ3UHk=";
 
   subPackages = [
     "cmd/cosign"