summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2022-05-04 13:31:33 +0200
committerFabian Affolter <mail@fabian-affolter.ch>2022-05-04 13:31:33 +0200
commit3c95672b22c9fc58172d6de885fd6477ce823a36 (patch)
tree5786ebcc3952e9f1e10c72083e6418e658707f16 /pkgs
parente310b2cd84ad1bd84b8a1e7ac47a3569142cad87 (diff)
downloadnixpkgs-3c95672b22c9fc58172d6de885fd6477ce823a36.tar
nixpkgs-3c95672b22c9fc58172d6de885fd6477ce823a36.tar.gz
nixpkgs-3c95672b22c9fc58172d6de885fd6477ce823a36.tar.bz2
nixpkgs-3c95672b22c9fc58172d6de885fd6477ce823a36.tar.lz
nixpkgs-3c95672b22c9fc58172d6de885fd6477ce823a36.tar.xz
nixpkgs-3c95672b22c9fc58172d6de885fd6477ce823a36.tar.zst
nixpkgs-3c95672b22c9fc58172d6de885fd6477ce823a36.zip
syft: 0.44.1 -> 0.45.1
Diffstat (limited to 'pkgs')
-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 11c748f5d64..0f7d3806182 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.44.1";
+  version = "0.45.1";
 
   src = fetchFromGitHub {
     owner = "anchore";
     repo = pname;
     rev = "v${version}";
-    sha256 = "sha256-kDTTOc2sPCKWGeVuXlGhOo2dHjBZ1QEE7jAEVs4a70U=";
+    sha256 = "sha256-oexsu52x9rAqwTVxTVHzKPuaIfvg5lvvuBmKcnb2Yew=";
     # 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-ZWJzMDfCop5IT6mOvCWdtjGjVrZJxyM0z7iK3TiO+PI=";
+  vendorSha256 = "sha256-d6ZBWX4/lgh610fBLTE1EUqZmpctLfxi2PSRifH+1jg=";
 
   nativeBuildInputs = [ installShellFiles ];