3
0
Fork 0
forked from mirrors/nixpkgs

syft: 0.55.0 -> 0.56.0

This commit is contained in:
R. Ryantm 2022-09-13 10:23:52 +00:00
parent d99e0c6fc2
commit 9990cf51b1

View file

@ -2,13 +2,13 @@
buildGoModule rec {
pname = "syft";
version = "0.55.0";
version = "0.56.0";
src = fetchFromGitHub {
owner = "anchore";
repo = pname;
rev = "v${version}";
sha256 = "sha256-tzrWgmEMe7y6PQgtYiN12LGR24FuaEvzOBAfgbIOepo=";
sha256 = "sha256-UEkBhVUapfHYQAUaYWHEpGgXn39Vb3NscWxynpob2MM=";
# 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-HaTUjNKAZNiVcM4tZJb0r9ezsvWTlOicPct/ZtpTz5Y=";
vendorSha256 = "sha256-MxaY11CfcLWonm4SXI0mjnq29h9Hz8PdiY8eFrn42a0=";
nativeBuildInputs = [ installShellFiles ];