Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
83 lines
2.1 KiB
Nix
83 lines
2.1 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
buildPackages,
|
|
buildGo124Module,
|
|
fetchFromGitHub,
|
|
installShellFiles,
|
|
testers,
|
|
trivy,
|
|
}:
|
|
|
|
buildGo124Module rec {
|
|
pname = "trivy";
|
|
version = "0.66.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "aquasecurity";
|
|
repo = "trivy";
|
|
tag = "v${version}";
|
|
hash = "sha256-Kn28mUdCi/8FPrAa0UbfOaBlzkaGc9daYOR93t+n2uY=";
|
|
};
|
|
|
|
# Hash mismatch on across Linux and Darwin
|
|
proxyVendor = true;
|
|
|
|
vendorHash = "sha256-FabIeFGUX55zyMtGadHKGbJ7awlHgNzfO2IiiFKmIc4=";
|
|
|
|
subPackages = [ "cmd/trivy" ];
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
"-X=github.com/aquasecurity/trivy/pkg/version/app.ver=${version}"
|
|
];
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
# Tests require network access
|
|
doCheck = false;
|
|
|
|
postInstall =
|
|
let
|
|
trivy =
|
|
if stdenv.buildPlatform.canExecute stdenv.hostPlatform then
|
|
placeholder "out"
|
|
else
|
|
buildPackages.trivy;
|
|
in
|
|
''
|
|
installShellCompletion --cmd trivy \
|
|
--bash <(${trivy}/bin/trivy completion bash) \
|
|
--fish <(${trivy}/bin/trivy completion fish) \
|
|
--zsh <(${trivy}/bin/trivy completion zsh)
|
|
'';
|
|
|
|
doInstallCheck = true;
|
|
|
|
passthru.tests.version = testers.testVersion {
|
|
package = trivy;
|
|
command = "trivy --version";
|
|
version = "Version: ${version}";
|
|
};
|
|
|
|
meta = {
|
|
description = "Simple and comprehensive vulnerability scanner for containers, suitable for CI";
|
|
homepage = "https://github.com/aquasecurity/trivy";
|
|
changelog = "https://github.com/aquasecurity/trivy/releases/tag/v${version}";
|
|
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.).
|
|
'';
|
|
mainProgram = "trivy";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [
|
|
fab
|
|
jk
|
|
];
|
|
};
|
|
}
|