5c370c0b2a
GitOrigin-RevId: 33d1e753c82ffc557b4a585c77de43d4c922ebb5
19 lines
565 B
Nix
19 lines
565 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 = [ ];
|
|
mainProgram = "brakeman";
|
|
};
|
|
}
|