rekor-cli: 0.11.0 -> 0.12.0

authored by R. Ryantm and committed by Bobby Rong 681a8f27 e923d788

+3 -3
+3 -3
pkgs/tools/security/rekor/default.nix
··· 4 4 generic = { pname, packageToBuild, description }: 5 5 buildGoModule rec { 6 6 inherit pname; 7 - version = "0.11.0"; 7 + version = "0.12.0"; 8 8 9 9 src = fetchFromGitHub { 10 10 owner = "sigstore"; 11 11 repo = "rekor"; 12 12 rev = "v${version}"; 13 - sha256 = "sha256-55socfx7qTQ3F5JcDgPTHQP+96X7lwFJ8IIz52hFxow="; 13 + sha256 = "sha256-XMudPMCy9AKpqMmt+iH+xyB08s83B/Q0G8PC/4l7llo="; 14 14 # populate values that require us to use git. By doing this in postFetch we 15 15 # can delete .git afterwards and maintain better reproducibility of the src. 16 16 leaveDotGit = true; ··· 23 23 ''; 24 24 }; 25 25 26 - vendorSha256 = "sha256-A3fG756BoUSJwxyGdfpJlbb+nVQgzo39mjT+QD4knlk="; 26 + vendorSha256 = "sha256-cNe3lp866VTeL81FXKVG910ZmO2jrGIZowPRRMFc0bQ="; 27 27 28 28 nativeBuildInputs = [ installShellFiles ]; 29 29