depot/third_party/nixpkgs/pkgs/tools/admin/trivy/default.nix
Default email b5f92a349c Project import generated by Copybara.
GitOrigin-RevId: 7c9cc5a6e5d38010801741ac830a3f8fd667a7a0
2023-10-19 15:55:26 +02:00

57 lines
1.5 KiB
Nix

{ lib
, buildGoModule
, fetchFromGitHub
, testers
, trivy
}:
buildGoModule rec {
pname = "trivy";
version = "0.46.0";
src = fetchFromGitHub {
owner = "aquasecurity";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-hthVpiiTRrBdEL5QsL8NiOYNRXybCAfAnCn5w3JfNn4=";
};
# Hash mismatch on across Linux and Darwin
proxyVendor = true;
vendorHash = "sha256-2Aig/udgLQzNmVJ0m1C7wfqlNefpexQOrh2HCPBK9Mc=";
subPackages = [ "cmd/trivy" ];
ldflags = [
"-s"
"-w"
"-X=github.com/aquasecurity/trivy/pkg/version.ver=v${version}"
];
# Tests require network access
doCheck = false;
doInstallCheck = true;
passthru.tests.version = testers.testVersion {
package = trivy;
command = "trivy --version";
version = "Version: v${version}";
};
meta = with lib; {
homepage = "https://github.com/aquasecurity/trivy";
changelog = "https://github.com/aquasecurity/trivy/releases/tag/v${version}";
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; [ fab jk ];
};
}