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

18 lines
478 B
Nix
Raw Normal View History

{ lib, bundlerApp, bundlerUpdateScript }:
2019-01-28 20:05:02 +00:00
bundlerApp {
pname = "one_gadget";
gemdir = ./.;
exes = [ "one_gadget" ];
passthru.updateScript = bundlerUpdateScript "one_gadget";
2019-01-28 20:05:02 +00:00
meta = with lib; {
description = "The best tool for finding one gadget RCE in libc.so.6";
homepage = "https://github.com/david942j/one_gadget";
2019-01-28 20:05:02 +00:00
license = licenses.mit;
maintainers = with maintainers; [ artemist nicknovitski ];
2019-01-28 20:05:02 +00:00
platforms = platforms.unix;
};
}