diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..906baae --- /dev/null +++ b/shell.nix @@ -0,0 +1,14 @@ +{ pkgs ? import {} }: + +pkgs.mkShell { + buildInputs = [ + pkgs.ghidra + pkgs.radare2 + pkgs.neovim + ]; + shellHook = '' + export GHIDRA_PATH=$(dirname $(readlink -f $(which ghidra))) + export PATH=$PATH:$GHIDRA_PATH/support + ''; +} +