My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nomicon/pkgs/tools/security/grype/default.nix

40 lines
975 B

{ lib
, buildGoModule
, docker
, fetchFromGitHub
}:
buildGoModule rec {
pname = "grype";
version = "0.28.0";
src = fetchFromGitHub {
owner = "anchore";
repo = pname;
rev = "v${version}";
sha256 = "sha256-Mc0bO9BDcIXEoHwhQDbX9g84kagcT3gVz8PPxXpG7dw=";
};
vendorSha256 = "sha256-su0dg9Gidd8tQKM5IzX6/GC5jk8SCIO+qsI3UGlvpwg=";
propagatedBuildInputs = [ docker ];
ldflags = [
"-s" "-w" "-X github.com/anchore/grype/internal/version.version=${version}"
];
# Tests require a running Docker instance
doCheck = false;
meta = with lib; {
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 ];
};
}