fluffychat: 1.22.1 -> 1.23.0 (#364091)
[NixPkgs.git] / pkgs / by-name / bo / bomber-go / package.nix
blob97e8d4ce1531d898e58e70f1afbeba0d0fde4024
2   lib,
3   buildGoModule,
4   fetchFromGitHub,
5 }:
7 buildGoModule rec {
8   pname = "bomber-go";
9   version = "0.4.7";
11   src = fetchFromGitHub {
12     owner = "devops-kung-fu";
13     repo = "bomber";
14     rev = "refs/tags/v${version}";
15     hash = "sha256-q3x3duXc2++BvVul2a5fBTcPHWrOHpPOGHBUXL08syg=";
16   };
18   vendorHash = "sha256-jVdrvc48/Vt240EYk5PtZCjNGipX7M1qF8OJdpu/qI4=";
20   ldflags = [
21     "-w"
22     "-s"
23   ];
25   checkFlags = [
26     "-skip=TestEnrich" # Requires network access
27   ];
29   meta = with lib; {
30     description = "Tool to scans Software Bill of Materials (SBOMs) for vulnerabilities";
31     homepage = "https://github.com/devops-kung-fu/bomber";
32     changelog = "https://github.com/devops-kung-fu/bomber/releases/tag/v${version}";
33     license = licenses.mpl20;
34     mainProgram = "bomber";
35     maintainers = with maintainers; [ fab ];
36   };