about summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorR. Ryantm <ryantm-bot@ryantm.com>2024-02-29 02:41:43 +0000
committerR. Ryantm <ryantm-bot@ryantm.com>2024-02-29 02:41:43 +0000
commit7a11e15a39e2caec122cd7bed91f98c85d0874cb (patch)
tree30243839fabb223997b7bcfc1adcd9e986a4107f /pkgs/tools
parent6780926802f953c2266e8a4215c7a4be86803dfa (diff)
downloadnixlib-7a11e15a39e2caec122cd7bed91f98c85d0874cb.tar
nixlib-7a11e15a39e2caec122cd7bed91f98c85d0874cb.tar.gz
nixlib-7a11e15a39e2caec122cd7bed91f98c85d0874cb.tar.bz2
nixlib-7a11e15a39e2caec122cd7bed91f98c85d0874cb.tar.lz
nixlib-7a11e15a39e2caec122cd7bed91f98c85d0874cb.tar.xz
nixlib-7a11e15a39e2caec122cd7bed91f98c85d0874cb.tar.zst
nixlib-7a11e15a39e2caec122cd7bed91f98c85d0874cb.zip
fulcio: 1.4.3 -> 1.4.4
Diffstat (limited to 'pkgs/tools')
-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 9c40c051bebc..17bd273c0a30 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.4.3";
+  version = "1.4.4";
 
   src = fetchFromGitHub {
     owner = "sigstore";
     repo = pname;
     rev = "v${version}";
-    sha256 = "sha256-LT8J9s008XQtDtNdH1ungQREqQUrlTsoxnlRLKimqLY=";
+    sha256 = "sha256-zL+53GIGDQagWtsSHQT1Gn1hZUCpYF3uYKXmJWFGy7k=";
     # 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-ImZJXdOfMepMFU1z47XyNU39NGGdiCzQji2/tKVfibQ=";
+  vendorHash = "sha256-B4/SIY9G5uEP+P+oSdhaMM7HRaHm5nq2jqXdIWxdP+8=";
 
   nativeBuildInputs = [ installShellFiles ];