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

36 lines
874 B
Nix
Raw Normal View History

2021-01-06 18:11:00 +00:00
{ buildGoModule
, docker
, fetchFromGitHub
, lib
2021-01-06 18:11:00 +00:00
}:
buildGoModule rec {
pname = "grype";
2021-03-19 15:30:54 +00:00
version = "0.8.0";
2021-01-06 18:11:00 +00:00
src = fetchFromGitHub {
owner = "anchore";
repo = pname;
rev = "v${version}";
2021-03-19 15:30:54 +00:00
sha256 = "sha256-/OgAh33DF0UkBcc5GriGgeoZ7kae9GhGnUnIX6lGlys=";
2021-01-06 18:11:00 +00:00
};
2021-03-19 15:30:54 +00:00
vendorSha256 = "sha256-SGO8RKSOK0PHqSIJfTdcuAmqMtFuo9MBdiEylDUpOFo=";
2021-01-06 18:11:00 +00:00
propagatedBuildInputs = [ docker ];
# tests require a running Docker instance
doCheck = false;
meta = with lib; {
2021-01-06 18:11:00 +00: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 ];
};
}