summary refs log tree commit diff
path: root/pkgs/tools/security/rekor
diff options
context:
space:
mode:
authorR. Ryantm <ryantm-bot@ryantm.com>2022-08-19 17:32:15 +0000
committerR. Ryantm <ryantm-bot@ryantm.com>2022-08-19 17:32:15 +0000
commit3c3e5cfcbfbb16cbb560e365d150a9e154c27249 (patch)
tree03902fc4f54abcd81949d5e970fdb00c7e28f6b6 /pkgs/tools/security/rekor
parent11d8a148a10a54322df21431a861908c805342b0 (diff)
rekor-cli: 0.10.0 -> 0.11.0
Diffstat (limited to 'pkgs/tools/security/rekor')
-rw-r--r--pkgs/tools/security/rekor/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/security/rekor/default.nix b/pkgs/tools/security/rekor/default.nix
index 0343c389e5f37..44b47dc6568be 100644
--- a/pkgs/tools/security/rekor/default.nix
+++ b/pkgs/tools/security/rekor/default.nix
@@ -4,13 +4,13 @@ let
   generic = { pname, packageToBuild, description }:
     buildGoModule rec {
       inherit pname;
-      version = "0.10.0";
+      version = "0.11.0";
 
       src = fetchFromGitHub {
         owner = "sigstore";
         repo = "rekor";
         rev = "v${version}";
-        sha256 = "sha256-jwV6qPItuNrXl3rknY2RVIw3f3VwyiEefomnvGKiluI=";
+        sha256 = "sha256-55socfx7qTQ3F5JcDgPTHQP+96X7lwFJ8IIz52hFxow=";
         # populate values that require us to use git. By doing this in postFetch we
         # can delete .git afterwards and maintain better reproducibility of the src.
         leaveDotGit = true;
@@ -23,7 +23,7 @@ let
         '';
       };
 
-      vendorSha256 = "sha256-qT1vY+YLmehQYS+jiCEx7vOJACIGPcl7VNfUEMc8w0U=";
+      vendorSha256 = "sha256-A3fG756BoUSJwxyGdfpJlbb+nVQgzo39mjT+QD4knlk=";
 
       nativeBuildInputs = [ installShellFiles ];