2021-06-18 05:20:00 +01:00
|
|
|
{ lib, ruby, bundlerApp, bundlerUpdateScript }:
|
2018-08-01 14:15:29 +01:00
|
|
|
|
2021-06-18 05:20:00 +01:00
|
|
|
bundlerApp rec {
|
|
|
|
pname = "brakeman";
|
|
|
|
exes = [ "brakeman" ];
|
|
|
|
gemdir = ./.;
|
|
|
|
|
|
|
|
passthru.updateScript = bundlerUpdateScript "brakeman";
|
2018-08-01 14:15:29 +01:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Static analysis security scanner for Ruby on Rails";
|
2019-12-12 09:20:00 +00:00
|
|
|
homepage = "https://brakemanscanner.org/";
|
2021-01-28 04:20:00 +00:00
|
|
|
changelog = "https://github.com/presidentbeef/brakeman/blob/v${version}/CHANGES.md";
|
2019-12-12 09:20:00 +00:00
|
|
|
license = [ licenses.unfreeRedistributable ];
|
2018-08-01 14:15:29 +01:00
|
|
|
platforms = ruby.meta.platforms;
|
|
|
|
maintainers = [ maintainers.marsam ];
|
|
|
|
};
|
|
|
|
}
|