3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/admin/trivy/default.nix

37 lines
1.2 KiB
Nix
Raw Normal View History

2020-10-13 14:18:41 +01:00
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "trivy";
2021-04-30 08:52:32 +01:00
version = "0.17.1";
2020-10-13 14:18:41 +01:00
src = fetchFromGitHub {
owner = "aquasecurity";
repo = pname;
rev = "v${version}";
2021-04-30 08:52:32 +01:00
sha256 = "sha256-5TOKYxH1Tnsd1t2yoUflFUSW0QGS9l5+0JtS2Fo6vL0=";
2020-10-13 14:18:41 +01:00
};
2021-04-30 08:52:32 +01:00
vendorSha256 = "sha256-zVe1bTTLOHxfdbb6VcztOCWMbCbzT6igNpvPytktMWs=";
2020-10-13 14:18:41 +01:00
2021-04-30 08:52:32 +01:00
excludedPackages = "misc";
2021-04-30 08:52:32 +01:00
preBuild = ''
buildFlagsArray+=("-ldflags" "-s -w -X main.version=v${version}")
'';
2020-10-13 14:18:41 +01:00
meta = with lib; {
2021-04-30 08:52:32 +01:00
homepage = "https://github.com/aquasecurity/trivy";
changelog = "https://github.com/aquasecurity/trivy/releases/tag/v${version}";
2020-10-13 14:18:41 +01:00
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.).
'';
license = licenses.asl20;
maintainers = with maintainers; [ jk ];
};
}