about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2023-06-12 15:27:34 +0300
committerGitHub <noreply@github.com>2023-06-12 15:27:34 +0300
commit8ee95c4b9a0cf240a45951b53c6aab01f8e783a1 (patch)
treea7b418ff53f0a9e6ecdaf29d8d73a25a0d493965 /pkgs
parent2355fe21a7ad84c3300faa9226c784ab050b39d8 (diff)
parent579dda9aecbb6dd339970e1e498af5cb7df28511 (diff)
downloadnixlib-8ee95c4b9a0cf240a45951b53c6aab01f8e783a1.tar
nixlib-8ee95c4b9a0cf240a45951b53c6aab01f8e783a1.tar.gz
nixlib-8ee95c4b9a0cf240a45951b53c6aab01f8e783a1.tar.bz2
nixlib-8ee95c4b9a0cf240a45951b53c6aab01f8e783a1.tar.lz
nixlib-8ee95c4b9a0cf240a45951b53c6aab01f8e783a1.tar.xz
nixlib-8ee95c4b9a0cf240a45951b53c6aab01f8e783a1.tar.zst
nixlib-8ee95c4b9a0cf240a45951b53c6aab01f8e783a1.zip
Merge pull request #237316 from r-ryantm/auto-update/syft
syft: 0.82.0 -> 0.83.0
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 f8ffed48212c..f9de69127446 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.82.0";
+  version = "0.83.0";
 
   src = fetchFromGitHub {
     owner = "anchore";
     repo = pname;
     rev = "v${version}";
-    hash = "sha256-Pdo/hRcHU0R7bcjFgCGB9cRGA9/OULNkj//VG8cowj0=";
+    hash = "sha256-H0DBz6HsEML4JXY601pssNtq1q3Z0t00JpVAo1izijM=";
     # 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 {
   };
   # hash mismatch with darwin
   proxyVendor = true;
-  vendorHash = "sha256-d3Nf/9IyPYbODJ3jL0CHa4Jl2GEoe0VdlR3Br80uYiQ=";
+  vendorHash = "sha256-7nTbXq6HgD1oBxyQbuAxbiLP8IuXsDQLIoJ1l55ACwA=";
 
   nativeBuildInputs = [ installShellFiles ];