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

40 lines
975 B
Nix
Raw Normal View History

2021-03-27 14:16:51 +00:00
{ lib
, buildGoModule
2021-01-06 18:11:00 +00:00
, docker
, fetchFromGitHub
}:
buildGoModule rec {
pname = "grype";
2021-12-07 02:44:08 +00:00
version = "0.26.1";
2021-01-06 18:11:00 +00:00
src = fetchFromGitHub {
owner = "anchore";
repo = pname;
rev = "v${version}";
2021-12-07 02:44:08 +00:00
sha256 = "sha256-B+b+Fb5nUBLSGeZ+ZUpvcZ+jOIotskXEPFoaQ48ob34=";
2021-01-06 18:11:00 +00:00
};
2021-12-07 02:44:08 +00:00
vendorSha256 = "sha256-w4mN9O5FKZNCksS8OwF3Ty9c1V552MAbMhqisQDK9GY=";
2021-01-06 18:11:00 +00:00
propagatedBuildInputs = [ docker ];
2021-08-21 08:23:50 +00:00
ldflags = [
"-s" "-w" "-X github.com/anchore/grype/internal/version.version=${version}"
];
2021-03-27 14:16:51 +00:00
# Tests require a running Docker instance
2021-01-06 18:11:00 +00:00
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 ];
};
}