nixpkgs/pkgs/development/tools/analysis/brakeman/default.nix
2021-06-18 04:20:00 +00:00

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