14684ed595
Agent-less vulnerability scanner https://github.com/future-architect/vuls
41 lines
988 B
Nix
41 lines
988 B
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "vuls";
|
|
version = "0.27.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "future-architect";
|
|
repo = "vuls";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-+KEcK9GLx1QErRQlSVGeFnvYoWY3lVFr7S4Zb34Djzo=";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
vendorHash = "sha256-XTKPsXCOzrji3qq+L4NR8FLBnXcafLj8w3K+UwowLQU=";
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
"-X=github.com/future-architect/vuls/config.Version=${version}"
|
|
"-X=github.com/future-architect/vuls/config.Revision=${src.rev}-1970-01-01T00:00:00Z"
|
|
];
|
|
|
|
postFixup = ''
|
|
mv $out/bin/cmd $out/bin/trivy-to-vuls
|
|
'';
|
|
|
|
meta = {
|
|
description = "Agent-less vulnerability scanner";
|
|
homepage = "https://github.com/future-architect/vuls";
|
|
changelog = "https://github.com/future-architect/vuls/blob/${src.rev}/CHANGELOG.md";
|
|
license = lib.licenses.gpl3Only;
|
|
maintainers = with lib.maintainers; [ fab ];
|
|
mainProgram = "vuls";
|
|
};
|
|
}
|