about summary refs log tree commit diff
diff options
context:
space:
mode:
authorRyan Mulligan <ryan@ryantm.com>2022-03-15 14:57:38 -0700
committerGitHub <noreply@github.com>2022-03-15 14:57:38 -0700
commit2ab389448eddd222e07d7a621c0c9a10c785ee94 (patch)
treee855d1105bf8e05528131ef7b4ac4b91e1a8fa62
parentdd00e0a1bbbeb49ecfd3a41884efa9a3addaec0b (diff)
parent7a5c6cace5e3eaa7984ce6042697bd963e1ea912 (diff)
Merge pull request #163922 from r-ryantm/auto-update/syft
syft: 0.41.1 -> 0.41.4
-rw-r--r--pkgs/tools/admin/syft/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/admin/syft/default.nix b/pkgs/tools/admin/syft/default.nix
index d4d5ee7348b79..43d9a628787a9 100644
--- a/pkgs/tools/admin/syft/default.nix
+++ b/pkgs/tools/admin/syft/default.nix
@@ -2,13 +2,13 @@
 
 buildGoModule rec {
   pname = "syft";
-  version = "0.41.1";
+  version = "0.41.4";
 
   src = fetchFromGitHub {
     owner = "anchore";
     repo = pname;
     rev = "v${version}";
-    sha256 = "sha256-6ltEC9LCuE4Rj4TlBwsDI45L92XMuCbEuMDkOk8OkZo=";
+    sha256 = "sha256-QRT5wvud9VMtXQ8QPC7joIMq7kYYlfVUSgzqMFW5LIE=";
     # 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;
@@ -22,7 +22,7 @@ buildGoModule rec {
       find "$out" -name .git -print0 | xargs -0 rm -rf
     '';
   };
-  vendorSha256 = "sha256-13PcAQlHPaQ1n7OiRSEW5H3rDXgUAmKAQGqQM31iyR8=";
+  vendorSha256 = "sha256-9/Mtjqny68HN4FItT2+yoknzdHBAS1aQL0VkTdm6624=";
 
   nativeBuildInputs = [ installShellFiles ];