python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / tools / bomber-go / default.nix
blob0c09e1e7c1a5828d33e68a6b7d585240010da52d
1 { lib
2 , buildGoModule
3 , fetchFromGitHub
4 }:
6 buildGoModule rec {
7   pname = "bomber-go";
8   version = "0.3.4";
10   src = fetchFromGitHub {
11     owner = "devops-kung-fu";
12     repo = "bomber";
13     rev = "refs/tags/v${version}";
14     hash = "sha256-q30wTM8HQURDBUReQsXgKHI4m4sSdHbWPwUld0sAays=";
15   };
17   vendorHash = "sha256-tkjwnc5EquAuIfYKy8u6ZDFJPl/UTW6x7vvY1QTsBXg=";
19   ldflags = [
20     "-w"
21     "-s"
22   ];
24   meta = with lib; {
25     description = "Tool to scans Software Bill of Materials (SBOMs) for vulnerabilities";
26     homepage = "https://github.com/devops-kung-fu/bomber";
27     license = licenses.mpl20;
28     mainProgram = "bomber";
29     maintainers = with maintainers; [ fab ];
30   };