mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-14 01:37:37 +00:00
vuls: init at 0.27.0
Agent-less vulnerability scanner https://github.com/future-architect/vuls
This commit is contained in:
parent
4ada35702a
commit
14684ed595
40
pkgs/by-name/vu/vuls/package.nix
Normal file
40
pkgs/by-name/vu/vuls/package.nix
Normal file
@ -0,0 +1,40 @@
|
||||
{
|
||||
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";
|
||||
};
|
||||
}
|
@ -13660,6 +13660,10 @@ with pkgs;
|
||||
|
||||
vul = callPackage ../applications/misc/vul { };
|
||||
|
||||
vuls = callPackage ../by-name/vu/vuls/package.nix {
|
||||
buildGoModule = buildGo123Module;
|
||||
};
|
||||
|
||||
xarchive = callPackage ../tools/archivers/xarchive { };
|
||||
|
||||
xarchiver = callPackage ../tools/archivers/xarchiver { };
|
||||
|
Loading…
Reference in New Issue
Block a user