brakeman: 5.0.0 -> 5.0.4
This commit is contained in:
parent
1a7a786dc1
commit
e30e177ff1
4 changed files with 34 additions and 7 deletions
2
pkgs/development/tools/analysis/brakeman/Gemfile
Normal file
2
pkgs/development/tools/analysis/brakeman/Gemfile
Normal file
|
@ -0,0 +1,2 @@
|
|||
source "https://rubygems.org"
|
||||
gem "brakeman"
|
13
pkgs/development/tools/analysis/brakeman/Gemfile.lock
Normal file
13
pkgs/development/tools/analysis/brakeman/Gemfile.lock
Normal file
|
@ -0,0 +1,13 @@
|
|||
GEM
|
||||
remote: https://rubygems.org/
|
||||
specs:
|
||||
brakeman (5.0.4)
|
||||
|
||||
PLATFORMS
|
||||
ruby
|
||||
|
||||
DEPENDENCIES
|
||||
brakeman
|
||||
|
||||
BUNDLED WITH
|
||||
2.1.4
|
|
@ -1,11 +1,11 @@
|
|||
{ lib, ruby, buildRubyGem }:
|
||||
{ lib, ruby, bundlerApp, bundlerUpdateScript }:
|
||||
|
||||
buildRubyGem rec {
|
||||
inherit ruby;
|
||||
name = "${gemName}-${version}";
|
||||
gemName = "brakeman";
|
||||
version = "5.0.0";
|
||||
source.sha256 = "0k1ynqsr9b0vnxqb7d5hbdk4q1i98zjzdnx4y1ylikz4rmkizf91";
|
||||
bundlerApp rec {
|
||||
pname = "brakeman";
|
||||
exes = [ "brakeman" ];
|
||||
gemdir = ./.;
|
||||
|
||||
passthru.updateScript = bundlerUpdateScript "brakeman";
|
||||
|
||||
meta = with lib; {
|
||||
description = "Static analysis security scanner for Ruby on Rails";
|
||||
|
|
12
pkgs/development/tools/analysis/brakeman/gemset.nix
Normal file
12
pkgs/development/tools/analysis/brakeman/gemset.nix
Normal file
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
brakeman = {
|
||||
groups = ["default"];
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "1czqmrqbli2cnw4vv4pzz8bk78c7lpcnnyba74cj632swv1za6jd";
|
||||
type = "gem";
|
||||
};
|
||||
version = "5.0.4";
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue