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

bundlerApp {
  pname = "one_gadget";
  gemdir = ./.;
  exes = [ "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 = [ maintainers.artemist ];
    platforms   = platforms.unix;
  };
}