summary refs log tree commit diff
path: root/pkgs/tools/security/fulcio/default.nix
diff options
context:
space:
mode:
authorR. Ryantm <ryantm-bot@ryantm.com>2023-04-18 13:21:01 +0000
committerR. Ryantm <ryantm-bot@ryantm.com>2023-04-18 13:21:01 +0000
commit0942f0a96306a3a7df16030e899a1b55eebcc8e3 (patch)
treec69aa9990f3382b50fa304cc86a4dd7b528b84e3 /pkgs/tools/security/fulcio/default.nix
parent75c131fc1b791b66225c2f5e4d95c6fc8e773efd (diff)
downloadnixpkgs-0942f0a96306a3a7df16030e899a1b55eebcc8e3.tar
nixpkgs-0942f0a96306a3a7df16030e899a1b55eebcc8e3.tar.gz
nixpkgs-0942f0a96306a3a7df16030e899a1b55eebcc8e3.tar.bz2
nixpkgs-0942f0a96306a3a7df16030e899a1b55eebcc8e3.tar.lz
nixpkgs-0942f0a96306a3a7df16030e899a1b55eebcc8e3.tar.xz
nixpkgs-0942f0a96306a3a7df16030e899a1b55eebcc8e3.tar.zst
nixpkgs-0942f0a96306a3a7df16030e899a1b55eebcc8e3.zip
fulcio: 1.1.0 -> 1.2.0
Diffstat (limited to 'pkgs/tools/security/fulcio/default.nix')
-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 9640b0d1fc9..e1a7b40a14b 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.1.0";
+  version = "1.2.0";
 
   src = fetchFromGitHub {
     owner = "sigstore";
     repo = pname;
     rev = "v${version}";
-    sha256 = "sha256-b2rn4et7Ze8XRc1Oa/DCfpva/rihtBLapbGlpYGvOjc=";
+    sha256 = "sha256-sDxbBIE0NgOcEMTnQNXe93RvIDBn0IjH2D15GxwVJqU=";
     # 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-8iNXBSEaKApu+qjGIYOLU6z/sxIVQhltgBRG9eN4RXw=";
+  vendorHash = "sha256-71YnLPgM3gkGzCgoiUIpknv9bFfxnZPHvf+5gAF1Knk=";
 
   nativeBuildInputs = [ installShellFiles ];