Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 24 lines 570 B view raw
1{ 2 lib, 3 ruby, 4 bundlerApp, 5 bundlerUpdateScript, 6}: 7 8bundlerApp { 9 pname = "brakeman"; 10 exes = [ "brakeman" ]; 11 gemdir = ./.; 12 13 passthru.updateScript = bundlerUpdateScript "brakeman"; 14 15 meta = with lib; { 16 description = "Static analysis security scanner for Ruby on Rails"; 17 homepage = "https://brakemanscanner.org/"; 18 changelog = "https://github.com/presidentbeef/brakeman/blob/v${version}/CHANGES.md"; 19 license = [ licenses.unfreeRedistributable ]; 20 platforms = ruby.meta.platforms; 21 maintainers = [ ]; 22 mainProgram = "brakeman"; 23 }; 24}