mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
19 lines
581 B
Nix
19 lines
581 B
Nix
{ lib, ruby, buildRubyGem }:
|
|
|
|
buildRubyGem rec {
|
|
inherit ruby;
|
|
name = "${gemName}-${version}";
|
|
gemName = "brakeman";
|
|
version = "4.8.0";
|
|
source.sha256 = "0xy28pq4x1i7xns5af9k8fx35sqffz2lg94fgbsi9zhi877b7srg";
|
|
|
|
meta = with lib; {
|
|
description = "Static analysis security scanner for Ruby on Rails";
|
|
homepage = "https://brakemanscanner.org/";
|
|
changelog = "https://github.com/presidentbeef/brakeman/releases/tag/v${version}";
|
|
license = [ licenses.unfreeRedistributable ];
|
|
platforms = ruby.meta.platforms;
|
|
maintainers = [ maintainers.marsam ];
|
|
};
|
|
}
|