3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/tools/analysis/brakeman/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
554 B
Nix
Raw Normal View History

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/";
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 ];
};
}