c7cb07f092
GitOrigin-RevId: 1536926ef5621b09bba54035ae2bb6d806d72ac8
19 lines
584 B
Nix
19 lines
584 B
Nix
{ lib, ruby, bundlerApp, bundlerUpdateScript }:
|
|
|
|
bundlerApp rec {
|
|
pname = "brakeman";
|
|
exes = [ "brakeman" ];
|
|
gemdir = ./.;
|
|
|
|
passthru.updateScript = bundlerUpdateScript "brakeman";
|
|
|
|
meta = with lib; {
|
|
description = "Static analysis security scanner for Ruby on Rails";
|
|
homepage = "https://brakemanscanner.org/";
|
|
changelog = "https://github.com/presidentbeef/brakeman/blob/v${version}/CHANGES.md";
|
|
license = [ licenses.unfreeRedistributable ];
|
|
platforms = ruby.meta.platforms;
|
|
maintainers = [ maintainers.marsam ];
|
|
mainProgram = "brakeman";
|
|
};
|
|
}
|