Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, bundlerApp, bundlerUpdateScript }:
2
3bundlerApp {
4 pname = "one_gadget";
5 gemdir = ./.;
6 exes = [ "one_gadget" ];
7
8 passthru.updateScript = bundlerUpdateScript "one_gadget";
9
10 meta = with lib; {
11 description = "The best tool for finding one gadget RCE in libc.so.6";
12 homepage = "https://github.com/david942j/one_gadget";
13 license = licenses.mit;
14 maintainers = with maintainers; [ artemist nicknovitski ];
15 platforms = platforms.unix;
16 };
17}