about summary refs log tree commit diff
path: root/pkgs/tools/security/rekor
diff options
context:
space:
mode:
authorThomas Gerbet <thomas@gerbet.me>2022-06-09 13:34:56 +0200
committerThomas Gerbet <thomas@gerbet.me>2022-06-09 13:37:49 +0200
commit0d2ee36cf3d5bb93a57d9e119be108b784ce71b9 (patch)
tree1b4cd14f2d13110f0fde394fe4d888c32fc05f3f /pkgs/tools/security/rekor
parent7eb78c6d040df835a754d2abed7760c4da0d5cf0 (diff)
rekor-cli, rekor-server: 0.7.0 -> 0.8.0
https://github.com/sigstore/rekor/releases/tag/v0.8.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 096455f84f144..80f88fa575cf0 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.7.0";
+      version = "0.8.0";
 
       src = fetchFromGitHub {
         owner = "sigstore";
         repo = "rekor";
         rev = "v${version}";
-        sha256 = "sha256-JKEo9sm3NiUiIA9eM21FLNdpa/9zg5YdvduW6MASBxA=";
+        sha256 = "sha256-DLgNHyw8PuQ5OS/5okzLqe5/J2m+JFmV4/xgt5fDNRI=";
         # 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-QUiQcbzNou3EUpuajJ5AE+g8wZ0XNh+WQ6DaSvfX1fM=";
+      vendorSha256 = "sha256-OZyRIi6y47c9eS8GLClgV4JGbSsvjd6KvED3N8LIe6I=";
 
       nativeBuildInputs = [ installShellFiles ];