mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-14 01:33:10 +00:00
26 lines
561 B
Nix
26 lines
561 B
Nix
|
{ pkgs, lib, bundlerApp, bundlerUpdateScript }:
|
||
|
|
||
|
bundlerApp {
|
||
|
pname = "ronin";
|
||
|
gemdir = ./.;
|
||
|
exes = [
|
||
|
"ronin"
|
||
|
"ronin-db"
|
||
|
"ronin-exploits"
|
||
|
"ronin-fuzzer"
|
||
|
"ronin-payloads"
|
||
|
"ronin-repos"
|
||
|
"ronin-vulns"
|
||
|
"ronin-web"
|
||
|
];
|
||
|
|
||
|
passthru.updateScript = bundlerUpdateScript "ronin";
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "A free and Open Source Ruby toolkit for security research and development";
|
||
|
homepage = "https://ronin-rb.dev";
|
||
|
license = licenses.gpl3Plus;
|
||
|
maintainers = with maintainers; [ Ch1keen ];
|
||
|
};
|
||
|
}
|