Merge pull request #187476 from r-ryantm/auto-update/rekor-cli

rekor-cli: 0.10.0 -> 0.11.0

authored by

Ryan Mulligan and committed by
GitHub
18906adf 82df6df9

+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.10.0"; 7 + version = "0.11.0"; 8 8 9 9 src = fetchFromGitHub { 10 10 owner = "sigstore"; 11 11 repo = "rekor"; 12 12 rev = "v${version}"; 13 - sha256 = "sha256-jwV6qPItuNrXl3rknY2RVIw3f3VwyiEefomnvGKiluI="; 13 + sha256 = "sha256-55socfx7qTQ3F5JcDgPTHQP+96X7lwFJ8IIz52hFxow="; 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-qT1vY+YLmehQYS+jiCEx7vOJACIGPcl7VNfUEMc8w0U="; 26 + vendorSha256 = "sha256-A3fG756BoUSJwxyGdfpJlbb+nVQgzo39mjT+QD4knlk="; 27 27 28 28 nativeBuildInputs = [ installShellFiles ]; 29 29