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

fulcio: 1.4.1 -> 1.4.3
This commit is contained in:
Nick Cao
2023-10-30 08:44:30 -04:00
committed by GitHub
+3 -3
View File
@@ -2,13 +2,13 @@
buildGoModule rec {
pname = "fulcio";
version = "1.4.1";
version = "1.4.3";
src = fetchFromGitHub {
owner = "sigstore";
repo = pname;
rev = "v${version}";
sha256 = "sha256-6muoKiryWTGIoy1U3kWjuka0X1+gcrUQOvbuas26H1M=";
sha256 = "sha256-LT8J9s008XQtDtNdH1ungQREqQUrlTsoxnlRLKimqLY=";
# 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;
@@ -20,7 +20,7 @@ buildGoModule rec {
find "$out" -name .git -print0 | xargs -0 rm -rf
'';
};
vendorHash = "sha256-i9RK9kNSB9FOnVbYcHLBHt8KKBQCNsEDONNm1IxgTJc=";
vendorHash = "sha256-ImZJXdOfMepMFU1z47XyNU39NGGdiCzQji2/tKVfibQ=";
nativeBuildInputs = [ installShellFiles ];