83627f9931
GitOrigin-RevId: 2893f56de08021cffd9b6b6dfc70fd9ccd51eb60
44 lines
1.2 KiB
Nix
44 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
installShellFiles,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "poutine";
|
|
version = "0.11.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "boostsecurityio";
|
|
repo = "poutine";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-T81Qi79VaZzfKL4niTZQW+gwwiBcyInALrvyUg1V4Ck=";
|
|
};
|
|
|
|
vendorHash = "sha256-/chq40j+puAI3KdI15vbZwrnzCKrU7g+Z/t9aOXQ1Sg=";
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
];
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
|
|
installShellCompletion --cmd ${meta.mainProgram} \
|
|
--bash <($out/bin/${meta.mainProgram} completion bash) \
|
|
--fish <($out/bin/${meta.mainProgram} completion fish) \
|
|
--zsh <($out/bin/${meta.mainProgram} completion zsh)
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Security scanner that detects misconfigurations and vulnerabilities in build pipelines of repositories";
|
|
homepage = "https://github.com/boostsecurityio/poutine";
|
|
changelog = "https://github.com/boostsecurityio/poutine/releases/tag/v${version}";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ fab ];
|
|
mainProgram = "poutine";
|
|
};
|
|
}
|