Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
47 lines
982 B
Nix
47 lines
982 B
Nix
{
|
|
lib,
|
|
bundlerEnv,
|
|
bundlerUpdateScript,
|
|
defaultGemConfig,
|
|
ronin,
|
|
testers,
|
|
yasm,
|
|
}:
|
|
|
|
bundlerEnv rec {
|
|
name = "ronin";
|
|
version = "2.1.1";
|
|
gemdir = ./.;
|
|
|
|
gemConfig = defaultGemConfig // {
|
|
ronin-code-asm = attrs: {
|
|
dontBuild = false;
|
|
postPatch = ''
|
|
substituteInPlace lib/ronin/code/asm/program.rb \
|
|
--replace "YASM::Command.run(" "YASM::Command.run(
|
|
command_path: '${yasm}/bin/yasm',"
|
|
'';
|
|
};
|
|
};
|
|
|
|
postBuild = ''
|
|
shopt -s extglob
|
|
rm $out/bin/!(ronin*)
|
|
'';
|
|
|
|
passthru.updateScript = bundlerUpdateScript "ronin";
|
|
|
|
passthru.tests.version = testers.testVersion {
|
|
package = ronin;
|
|
command = "ronin --version";
|
|
version = "ronin ${version}";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Free and Open Source Ruby toolkit for security research and development";
|
|
homepage = "https://ronin-rb.dev";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ Ch1keen ];
|
|
};
|
|
}
|