nixpkgs/pkgs/tools/security/grype/default.nix

40 lines
1,004 B
Nix
Raw Normal View History

2021-03-27 15:16:51 +01:00
{ lib
, buildGoModule
2021-01-06 19:11:00 +01:00
, docker
, fetchFromGitHub
}:
buildGoModule rec {
pname = "grype";
2021-07-20 07:12:24 +02:00
version = "0.15.0";
2021-01-06 19:11:00 +01:00
src = fetchFromGitHub {
owner = "anchore";
repo = pname;
rev = "v${version}";
2021-07-20 07:12:24 +02:00
sha256 = "sha256-xiUDyuVNVkVT+kxOEFOq4RKxMc5nNjsom/ZTKzfkOhU=";
2021-01-06 19:11:00 +01:00
};
2021-07-01 09:09:06 +02:00
vendorSha256 = "sha256-mW3e4WFa9pKSpyTZYmPA2j8nZz+94G2PqdqI0BDo3wc=";
2021-01-06 19:11:00 +01:00
propagatedBuildInputs = [ docker ];
2021-03-27 15:16:51 +01:00
preBuild = ''
buildFlagsArray+=("-ldflags" "-s -w -X github.com/anchore/grype/internal/version.version=${version}")
'';
# Tests require a running Docker instance
2021-01-06 19:11:00 +01:00
doCheck = false;
meta = with lib; {
2021-01-06 19:11:00 +01:00
description = "Vulnerability scanner for container images and filesystems";
longDescription = ''
As a vulnerability scanner is grype abale to scan the contents of a container
image or filesystem to find known vulnerabilities.
'';
homepage = "https://github.com/anchore/grype";
license = with licenses; [ asl20 ];
maintainers = with maintainers; [ fab ];
};
}