mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-05 21:33:07 +00:00
19 lines
554 B
Nix
19 lines
554 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 ];
|
|
};
|
|
}
|