Skip to content

Commit

Permalink
brakeman: init at 4.3.1 (#44294)
Browse files Browse the repository at this point in the history
  • Loading branch information
marsam authored and xeji committed Aug 1, 2018
1 parent dc4abdf commit 4cc3a18
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
17 changes: 17 additions & 0 deletions pkgs/development/tools/analysis/brakeman/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{ lib, ruby, buildRubyGem }:

buildRubyGem rec {
inherit ruby;
name = "${gemName}-${version}";
gemName = "brakeman";
version = "4.3.1";
source.sha256 = "1y4i4vw7hawypvgg04s544fqx52ml67h9zxsaqm8w5hvxmb20wkh";

meta = with lib; {
description = "Static analysis security scanner for Ruby on Rails";
homepage = https://brakemanscanner.org/;
license = [ licenses.cc-by-nc-sa-40 licenses.mit ];
platforms = ruby.meta.platforms;
maintainers = [ maintainers.marsam ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -589,6 +589,8 @@ with pkgs;

awless = callPackage ../tools/virtualization/awless { };

brakeman = callPackage ../development/tools/analysis/brakeman { };

ec2_api_tools = callPackage ../tools/virtualization/ec2-api-tools { };

ec2_ami_tools = callPackage ../tools/virtualization/ec2-ami-tools { };
Expand Down

0 comments on commit 4cc3a18

Please sign in to comment.