Merge pull request #246888 from r-ryantm/auto-update/fulcio

fulcio: 1.3.4 -> 1.4.0

authored by Thomas Gerbet and committed by GitHub d85f6412 2fca7d47

+3 -3
+3 -3
pkgs/tools/security/fulcio/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "fulcio"; 5 - version = "1.3.4"; 5 + version = "1.4.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "sigstore"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-HJ1hTq6Mwt4f8r92ZNpL/Aco9dzIpxBH9ZSA3h1P4/A="; 11 + sha256 = "sha256-9FDHMhL2vWyS5o04E3nML/pCL+juA87ZAEU6naIPCdc="; 12 12 # populate values that require us to use git. By doing this in postFetch we 13 13 # can delete .git afterwards and maintain better reproducibility of the src. 14 14 leaveDotGit = true; ··· 20 20 find "$out" -name .git -print0 | xargs -0 rm -rf 21 21 ''; 22 22 }; 23 - vendorHash = "sha256-zbh/NWA9or3dIeAwQ/sUOKrq03d3KVa5G5JkPbissr8="; 23 + vendorHash = "sha256-dEBHhgy4dyorVbP1TloPTa1h6U/923bYrXX4qiRa/2w="; 24 24 25 25 nativeBuildInputs = [ installShellFiles ]; 26 26