about summary refs log tree commit diff
path: root/pkgs/tools/security
diff options
context:
space:
mode:
authorThomas Gerbet <thomas@gerbet.me>2023-02-19 18:12:03 +0100
committerGitHub <noreply@github.com>2023-02-19 18:12:03 +0100
commitbbf15314774ba7c3ebea19c17af460dcae4de434 (patch)
tree757ef72be283e3dc3e336035be9f4a444580b727 /pkgs/tools/security
parent679f619cfc0727f6b798242a3517fc7abc0bb069 (diff)
parent41d114b234490b8c529d4895475eea53c8c4b726 (diff)
Merge pull request #217106 from r-ryantm/auto-update/fulcio
fulcio: 1.0.0 -> 1.1.0
Diffstat (limited to 'pkgs/tools/security')
-rw-r--r--pkgs/tools/security/fulcio/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/security/fulcio/default.nix b/pkgs/tools/security/fulcio/default.nix
index 91ec0a5c2503b..9640b0d1fc982 100644
--- a/pkgs/tools/security/fulcio/default.nix
+++ b/pkgs/tools/security/fulcio/default.nix
@@ -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 ];