nixpkgs/pkgs/development/tools/misc/one_gadget/default.nix

16 lines
375 B
Nix
Raw Normal View History

2019-01-28 21:05:02 +01:00
{ 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;
};
}