summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Gerbet <thomas@gerbet.me>2023-05-26 17:45:25 +0200
committergithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2023-05-26 18:48:16 +0000
commit7b800906056e116a86561de69880a8d5adbaf462 (patch)
treed694718c9547d081c0fd997a3f13942e3aa6051f
parentMerge pull request #234212 from yayayayaka/backport-234031-to-release-22.11 (diff)
downloadnixpkgs-7b800906056e116a86561de69880a8d5adbaf462.tar.gz
rekor-cli, rekor-server: 1.1.1 -> 1.2.1
Fixes CVE-2023-33199. Changelog: https://github.com/sigstore/rekor/releases/tag/v1.2.1 (cherry picked from commit e655d0318cefedac078bf541a30494a7d828ac3a)
-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 668ef4174aaa..77841733e3a0 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.1.1";
+ version = "1.2.1";
src = fetchFromGitHub {
owner = "sigstore";
repo = "rekor";
rev = "v${version}";
- hash = "sha256-/zNDruJsnLlqHud67S8/QpNEPLfFcboA+2SWLB1jzbM=";
+ hash = "sha256-tPiojtSCpqJjLGRZ1rNno7TKhmZ3jBtdb4dWLfRmh14=";
# 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-iQBVMYt5hXSp7y0gzKCMae3gHCvS6CN+/mDWmt1yPh8=";
+ vendorHash = "sha256-AIXoq/sYQRCR1pllwBhflAnanUD0aGo54drBOsaxiDQ=";
nativeBuildInputs = [ installShellFiles ];