mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
grype: init at 0.6.1
This commit is contained in:
parent
4746e1717f
commit
0fcc27a666
35
pkgs/tools/security/grype/default.nix
Normal file
35
pkgs/tools/security/grype/default.nix
Normal file
@ -0,0 +1,35 @@
|
||||
{ buildGoModule
|
||||
, docker
|
||||
, fetchFromGitHub
|
||||
, stdenv
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "grype";
|
||||
version = "0.6.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "anchore";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "0schq11vckvdj538mnkdzhxl452nrssqrfapab9qc44yxdi1wf8k";
|
||||
};
|
||||
|
||||
vendorSha256 = "0lna7zhsj3wnw83nv0dp93aj869pplb51gqzrkka7vnqp0rjcw50";
|
||||
|
||||
propagatedBuildInputs = [ docker ];
|
||||
|
||||
# tests require a running Docker instance
|
||||
doCheck = false;
|
||||
|
||||
meta = with stdenv.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 ];
|
||||
};
|
||||
}
|
@ -4570,6 +4570,8 @@ in
|
||||
|
||||
gssdp = callPackage ../development/libraries/gssdp { };
|
||||
|
||||
grype = callPackage ../tools/security/grype { };
|
||||
|
||||
gt5 = callPackage ../tools/system/gt5 { };
|
||||
|
||||
gtest = callPackage ../development/libraries/gtest { };
|
||||
|
Loading…
Reference in New Issue
Block a user