nixpkgs/pkgs/tools/admin/trivy/default.nix

39 lines
1.1 KiB
Nix
Raw Normal View History

2020-10-13 14:18:41 +01:00
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "trivy";
2020-11-23 09:13:33 +00:00
version = "0.13.0";
2020-10-13 14:18:41 +01:00
src = fetchFromGitHub {
owner = "aquasecurity";
repo = pname;
rev = "v${version}";
2020-11-23 09:13:33 +00:00
sha256 = "0d9lb1wzvxywg88fy85bicixd8wipvbhnwfckwl3p8shh0s9sr22";
2020-10-13 14:18:41 +01:00
};
2020-11-23 09:13:33 +00:00
vendorSha256 = "0sashi3x3hccqm27dg6hjlvpgvx42jdxpgzigzm81md58zhk509x";
2020-10-13 14:18:41 +01:00
subPackages = [ "cmd/trivy" ];
2020-10-13 14:18:41 +01:00
buildFlagsArray = [
"-ldflags="
"-s"
"-w"
"-X main.version=v${version}"
];
meta = with lib; {
description = "A simple and comprehensive vulnerability scanner for containers, suitable for CI";
longDescription = ''
Trivy is a simple and comprehensive vulnerability scanner for containers
and other artifacts. A software vulnerability is a glitch, flaw, or
weakness present in the software or in an Operating System. Trivy detects
vulnerabilities of OS packages (Alpine, RHEL, CentOS, etc.) and
application dependencies (Bundler, Composer, npm, yarn, etc.).
'';
homepage = src.meta.homepage;
license = licenses.asl20;
maintainers = with maintainers; [ jk ];
};
}