mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 02:44:17 +03:00
gef: add missing dependency
This commit is contained in:
parent
bc3376905b
commit
88b4ce0b09
@ -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 = [
|
||||
|
Loading…
Reference in New Issue
Block a user