lol

Merge pull request #181400 from fabaff/grype-bump

syft: 0.50.0 -> 0.51.0, grype: 0.41.0 -> 0.42.0

authored by

Fabian Affolter and committed by
GitHub
3556174c 9c5fc4f1

+6 -6
+3 -3
pkgs/tools/admin/syft/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "syft"; 5 - version = "0.50.0"; 5 + version = "0.51.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "anchore"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-FQHmlASGBJOCAde0k3yuQBj8ZGsmi2jPWbq26NgXOxU="; 11 + sha256 = "sha256-ISmUCu+SiY2hCf6MoIBolstMIgl5g/kGpmBuOVLoybY="; 12 12 # populate values that require us to use git. By doing this in postFetch we 13 13 # can delete .git afterwards and maintain better reproducibility of the src. 14 14 leaveDotGit = true; ··· 20 20 find "$out" -name .git -print0 | xargs -0 rm -rf 21 21 ''; 22 22 }; 23 - vendorSha256 = "sha256-lnI2Y6GcxR+LiR8Us4j+8GbSYyXwvpiWqacWneGrMAE="; 23 + vendorSha256 = "sha256-d31LHkxSyO0QwA5FXX2Zfzj0ctat/Lqb5yObTrauJUg="; 24 24 25 25 nativeBuildInputs = [ installShellFiles ]; 26 26
+3 -3
pkgs/tools/security/grype/default.nix
··· 7 7 8 8 buildGoModule rec { 9 9 pname = "grype"; 10 - version = "0.41.0"; 10 + version = "0.42.0"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "anchore"; 14 14 repo = pname; 15 15 rev = "v${version}"; 16 - hash = "sha256-hEWs1o4Y3fm6dbkpClKxvR4qt5egE6Yt70V9sd3GK3I="; 16 + hash = "sha256-MShlKtrorqXRInQ01dEzVeLDRDua9PISkficF02PrBI="; 17 17 # populate values that require us to use git. By doing this in postFetch we 18 18 # can delete .git afterwards and maintain better reproducibility of the src. 19 19 leaveDotGit = true; ··· 26 26 ''; 27 27 }; 28 28 29 - vendorSha256 = "sha256-BB7E6wb6A97AATxFHENLo+Q+oVYOnYRzC/15bfomgR4="; 29 + vendorSha256 = "sha256-MusEvYNaMM0kqHSDdenPKo4IrIFmvPHSCRzciKMFiew="; 30 30 31 31 nativeBuildInputs = [ 32 32 installShellFiles