Merge pull request #198779 from fabaff/bomber

bomber-go: int at 0.3.4
This commit is contained in:
Fabian Affolter 2022-11-01 16:42:17 +01:00 committed by GitHub
commit d14595d328
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 33 additions and 0 deletions

View File

@ -0,0 +1,31 @@
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "bomber-go";
version = "0.3.4";
src = fetchFromGitHub {
owner = "devops-kung-fu";
repo = "bomber";
rev = "refs/tags/v${version}";
hash = "sha256-q30wTM8HQURDBUReQsXgKHI4m4sSdHbWPwUld0sAays=";
};
vendorHash = "sha256-tkjwnc5EquAuIfYKy8u6ZDFJPl/UTW6x7vvY1QTsBXg=";
ldflags = [
"-w"
"-s"
];
meta = with lib; {
description = "Tool to scans Software Bill of Materials (SBOMs) for vulnerabilities";
homepage = "https://github.com/devops-kung-fu/bomber";
license = licenses.mpl20;
mainProgram = "bomber";
maintainers = with maintainers; [ fab ];
};
}

View File

@ -5129,6 +5129,8 @@ with pkgs;
bogofilter = callPackage ../tools/misc/bogofilter { };
bomber-go = callPackage ../development/tools/bomber-go { };
bomutils = callPackage ../tools/archivers/bomutils { };
boofuzz= callPackage ../tools/security/boofuzz { };