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

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

55 lines
1.5 KiB
Nix
Raw Normal View History

2021-11-18 23:54:01 +01:00
{ lib
, buildGoModule
, fetchFromGitHub
}:
2020-10-13 15:18:41 +02:00
buildGoModule rec {
pname = "trivy";
version = "0.37.1";
2020-10-13 15:18:41 +02:00
src = fetchFromGitHub {
owner = "aquasecurity";
repo = pname;
rev = "v${version}";
sha256 = "sha256-4kjsNaiXnmJk88ivVnpTemOOc/asKrcZLGpO8gtV0J8=";
2020-10-13 15:18:41 +02:00
};
2022-08-22 09:09:29 +02:00
# hash missmatch on across linux and darwin
proxyVendor = true;
vendorSha256 = "sha256-qI29Qb8im9Xii83ayG1jZtZsrsAT0JQOcuKOM7VYro0=";
2020-10-13 15:18:41 +02:00
2021-04-30 09:52:32 +02:00
excludedPackages = "misc";
2021-08-21 10:23:49 +02:00
ldflags = [
2021-11-18 23:54:01 +01:00
"-s"
"-w"
"-X main.version=v${version}"
2021-08-21 10:23:49 +02:00
];
2020-10-13 15:18:41 +02:00
2022-05-20 20:12:11 +02:00
# Tests require network access
2021-12-25 23:27:35 +01:00
doCheck = false;
2021-05-02 12:11:01 +02:00
doInstallCheck = true;
2021-12-25 23:27:35 +01:00
2021-05-02 12:11:01 +02:00
installCheckPhase = ''
runHook preInstallCheck
$out/bin/trivy --help
$out/bin/trivy --version | grep "v${version}"
runHook postInstallCheck
'';
2020-10-13 15:18:41 +02:00
meta = with lib; {
2021-04-30 09:52:32 +02:00
homepage = "https://github.com/aquasecurity/trivy";
changelog = "https://github.com/aquasecurity/trivy/releases/tag/v${version}";
2020-10-13 15:18:41 +02: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 ];
};
}