Merge pull request #132408 from 06kellyjac/cosign

cosign: 1.0.0 -> 1.0.1

authored by

Sandro and committed by
GitHub
d0e0c93c 72cffab6

+4 -4
+4 -4
pkgs/tools/security/cosign/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "cosign"; 5 - version = "1.0.0"; 5 + version = "1.0.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "sigstore"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "0s9mv580habr8pprdz2n5jisxakd10vv1y79fhwfcs29njr7yi7v"; 11 + sha256 = "sha256-j1C4OGyVY41bG+rRr6chbii94H4yeRCum52A8XcnP6g="; 12 12 }; 13 13 14 14 buildInputs = ··· 17 17 18 18 nativeBuildInputs = [ pkg-config ]; 19 19 20 - vendorSha256 = "0njvgykzpiym5w5b4ddnnq597qm90hcng51lf01yf6csir7nyr12"; 20 + vendorSha256 = "sha256-9/KrgokCqSWqC4nOgA1e9H0sOx6O/ZFGFEPxiPEKoNI="; 21 21 22 22 excludedPackages = "\\(copasetic\\)"; 23 23 24 24 preBuild = '' 25 25 buildFlagsArray+=(${lib.optionalString pivKeySupport "-tags=pivkey"}) 26 26 ''; 27 - ldflags = [ "-s" "-w" "-X github.com/sigstore/cosign/cmd/cosign/cli.gitVersion=v${version}"]; 27 + ldflags = [ "-s" "-w" "-X github.com/sigstore/cosign/cmd/cosign/cli.gitVersion=v${version}" ]; 28 28 29 29 meta = with lib; { 30 30 homepage = "https://github.com/sigstore/cosign";