mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 18:33:00 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
37 lines
839 B
Nix
37 lines
839 B
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "bomber-go";
|
|
version = "0.4.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "devops-kung-fu";
|
|
repo = "bomber";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-q3x3duXc2++BvVul2a5fBTcPHWrOHpPOGHBUXL08syg=";
|
|
};
|
|
|
|
vendorHash = "sha256-jVdrvc48/Vt240EYk5PtZCjNGipX7M1qF8OJdpu/qI4=";
|
|
|
|
ldflags = [
|
|
"-w"
|
|
"-s"
|
|
];
|
|
|
|
checkFlags = [
|
|
"-skip=TestEnrich" # Requires network access
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Tool to scans Software Bill of Materials (SBOMs) for vulnerabilities";
|
|
homepage = "https://github.com/devops-kung-fu/bomber";
|
|
changelog = "https://github.com/devops-kung-fu/bomber/releases/tag/v${version}";
|
|
license = licenses.mpl20;
|
|
mainProgram = "bomber";
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|