Commit 14684ed5 authored by Fabian Affolter's avatar Fabian Affolter
Browse files

vuls: init at 0.27.0

Agent-less vulnerability scanner

https://github.com/future-architect/vuls
parent 4ada3570
Loading
Loading
Loading
Loading
+40 −0
Original line number Diff line number Diff line
{
  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";
  };
}
+4 −0
Original line number Diff line number Diff line
@@ -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 { };