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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

54 lines
1.4 KiB
Nix
Raw Normal View History

2021-11-18 22:54:01 +00:00
{ lib
, buildGoModule
, fetchFromGitHub
}:
2020-10-13 13:18:41 +00:00
buildGoModule rec {
pname = "trivy";
2022-04-05 11:02:32 +00:00
version = "0.25.2";
2020-10-13 13:18:41 +00:00
src = fetchFromGitHub {
owner = "aquasecurity";
repo = pname;
rev = "v${version}";
2022-04-05 11:02:32 +00:00
sha256 = "sha256-yDoHDOPtPX5u8K2/fnj6dgqlI+WUCsuxbdKtb/UtIRQ=";
2020-10-13 13:18:41 +00:00
};
2022-04-05 11:02:32 +00:00
vendorSha256 = "sha256-HZpGPCayrnayOg+3mB8Tw+5M2IfIpIvzP7qfY1OL7tk=";
2020-10-13 13:18:41 +00:00
2021-04-30 07:52:32 +00:00
excludedPackages = "misc";
2021-08-21 08:23:49 +00:00
ldflags = [
2021-11-18 22:54:01 +00:00
"-s"
"-w"
"-X main.version=v${version}"
2021-08-21 08:23:49 +00:00
];
2020-10-13 13:18:41 +00:00
2021-12-25 22:27:35 +00:00
# Tests requires network access
doCheck = false;
2021-05-02 10:11:01 +00:00
doInstallCheck = true;
2021-12-25 22:27:35 +00:00
2021-05-02 10:11:01 +00:00
installCheckPhase = ''
runHook preInstallCheck
$out/bin/trivy --help
$out/bin/trivy --version | grep "v${version}"
runHook postInstallCheck
'';
2020-10-13 13:18:41 +00:00
meta = with lib; {
2021-04-30 07:52:32 +00:00
homepage = "https://github.com/aquasecurity/trivy";
changelog = "https://github.com/aquasecurity/trivy/releases/tag/v${version}";
2020-10-13 13:18:41 +00: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 ];
};
}