summary refs log tree commit diff
path: root/pkgs/development/tools/misc/one_gadget/default.nix
blob: c3d0a6b57b4547d589ef03e5539ef3a565ba891e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ lib, bundlerApp, bundlerUpdateScript }:

bundlerApp {
  pname = "one_gadget";
  gemdir = ./.;
  exes = [ "one_gadget" ];

  passthru.updateScript = bundlerUpdateScript "one_gadget";

  meta = with lib; {
    description = "The best tool for finding one gadget RCE in libc.so.6";
    homepage    = "https://github.com/david942j/one_gadget";
    license     = licenses.mit;
    maintainers = with maintainers; [ artemist nicknovitski ];
    platforms   = platforms.unix;
  };
}