about summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorThomas Gerbet <thomas@gerbet.me>2023-10-21 13:16:59 +0200
committerGitHub <noreply@github.com>2023-10-21 13:16:59 +0200
commitd8e7df7bc0e1c33526ab7b296db4e1cb418b4737 (patch)
treeb05a70b9d51cb180fdde01a3ffdf21628fa809ef /pkgs/tools
parentee2c201dc33728bf93c0010a9acc331b8a5c28d7 (diff)
parentd9925bd964b32246d28ffd6fa969c6eea6595938 (diff)
Merge pull request #253272 from LeSuisse/rekor-1.3.0
rekor-cli, rekor-server: 1.2.2 -> 1.3.2
Diffstat (limited to 'pkgs/tools')
-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 2820f473c11b9..c27416e29d2ee 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 = "1.2.2";
+      version = "1.3.2";
 
       src = fetchFromGitHub {
         owner = "sigstore";
         repo = "rekor";
         rev = "v${version}";
-        hash = "sha256-U7KxkPYVAy3/olXsEgPMX/kzg0KvYMovLO4LWw8guE4=";
+        hash = "sha256-QiK+ixVURf5Fsx9YPgzYCuCy1wYjxTUXGVr4FIn41Xc=";
         # 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
         '';
       };
 
-      vendorHash = "sha256-hZyoVlNrPKE6ub94jVEOLGvxWoXKxFYcsEZyRrZuNkQ=";
+      vendorHash = "sha256-0379IX5W51Z48CffK1F2ZCPGLUq0g8lZXIQqaupC5io=";
 
       nativeBuildInputs = [ installShellFiles ];