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

fulcio: 1.0.0 -> 1.1.0
This commit is contained in:
Thomas Gerbet
2023-02-19 18:12:03 +01:00
committed by GitHub
+3 -3
View File
@@ -2,13 +2,13 @@
buildGoModule rec {
pname = "fulcio";
version = "1.0.0";
version = "1.1.0";
src = fetchFromGitHub {
owner = "sigstore";
repo = pname;
rev = "v${version}";
sha256 = "sha256-djnDHRD/vHfsem03896qcEb6uzgW3OCMBLqMDHca9vY=";
sha256 = "sha256-b2rn4et7Ze8XRc1Oa/DCfpva/rihtBLapbGlpYGvOjc=";
# 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
'';
};
vendorSha256 = "sha256-X+M/E1kWhgS408PHwMg5jnDn2ad1NW6xvlLucuOLAeg=";
vendorHash = "sha256-8iNXBSEaKApu+qjGIYOLU6z/sxIVQhltgBRG9eN4RXw=";
nativeBuildInputs = [ installShellFiles ];