9 lines
204 B
Nix
9 lines
204 B
Nix
{ pwndbg }:
|
|
|
|
# "$ coredumpctl gdb" always runs "gdb" from your path.
|
|
pwndbg.overrideAttrs ({ installPhase ? "", ... }: {
|
|
installPhase = installPhase + ''
|
|
ln -s $out/bin/pwndbg $out/bin/gdb
|
|
'';
|
|
})
|