3
4
mirror of https://git.feal.no/felixalb/nixos-config.git synced 2025-10-06 04:53:57 +02:00

sisko: Add some CTF tools

This commit is contained in:
2025-04-05 13:42:09 +02:00
parent 2fbc6223e1
commit 54546d512f
3 changed files with 14 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
{ pwndbg }:
# "$ coredumpctl gdb" always runs "gdb" from your path.
pwndbg.overrideAttrs ({ installPhase ? "", ... }: {
installPhase = installPhase + ''
ln -s $out/bin/pwndbg $out/bin/gdb
'';
})