gef: add missing dependency

This commit is contained in:
Louis Bettens 2022-04-03 10:47:43 +02:00
parent bc3376905b
commit 88b4ce0b09

View file

@ -4,6 +4,7 @@
, makeWrapper
, gdb
, python3
, bintools-unwrapped
, file
, ps
, git
@ -39,7 +40,12 @@ in stdenv.mkDerivation rec {
makeWrapper ${gdb}/bin/gdb $out/bin/gef \
--add-flags "-q -x $out/share/gef/gef.py" \
--set NIX_PYTHONPATH ${pythonPath} \
--prefix PATH : ${lib.makeBinPath [ python3 file ps ]}
--prefix PATH : ${lib.makeBinPath [
python3
bintools-unwrapped # for readelf
file
ps
]}
'';
checkInputs = [