about summary refs log tree commit diff
path: root/pkgs/tools/security/rekor
diff options
context:
space:
mode:
authorThomas Gerbet <thomas@gerbet.me>2022-05-27 11:24:59 +0200
committerThomas Gerbet <thomas@gerbet.me>2022-05-27 11:24:59 +0200
commit1fa0039f7529f246bc69998a88eacd7510801ed5 (patch)
tree1e99a98c4314ce731ad4c54d06f08846bc363c9d /pkgs/tools/security/rekor
parent60aed1ea595b240f1af3aec60b78e181a24d7342 (diff)
rekor-cli, rekor-server: 0.6.0 -> 0.7.0
https://github.com/sigstore/rekor/releases/tag/v0.7.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 69e0f0a2e9318..096455f84f144 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.6.0";
+      version = "0.7.0";
 
       src = fetchFromGitHub {
         owner = "sigstore";
         repo = "rekor";
         rev = "v${version}";
-        sha256 = "sha256-cihue4DMqHLFVz5kLZf17EcwbkfBxlxtqmto5K11sIo=";
+        sha256 = "sha256-JKEo9sm3NiUiIA9eM21FLNdpa/9zg5YdvduW6MASBxA=";
         # 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-bJOWSf2MHeLdI1smFXCjN3PIFRcO76cDnxks+FgqZdY=";
+      vendorSha256 = "sha256-QUiQcbzNou3EUpuajJ5AE+g8wZ0XNh+WQ6DaSvfX1fM=";
 
       nativeBuildInputs = [ installShellFiles ];