nixpkgs/pkgs/development/tools/misc/one_gadget/default.nix
2020-04-10 17:54:53 +01:00

18 lines
478 B
Nix

{ 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;
};
}