libredirect: Enable debug symbols

This commit is contained in:
Niklas Hambüchen 2021-05-23 16:25:52 +02:00 committed by Pascal Bach
parent 5ca0265505
commit 0afbd6c86a

View File

@ -28,6 +28,11 @@ stdenv.mkDerivation rec {
runHook postBuild
'';
# We want to retain debugging info to be able to use GDB on libredirect.so
# to more easily investigate which function overrides are missing or why
# existing ones do not have the intended effect.
dontStrip = true;
installPhase = ''
runHook preInstall