From 121424fc5edd8f09ecaaf776d2984c027841c87e Mon Sep 17 00:00:00 2001 From: Jeremy Penner Date: Mon, 5 May 2025 20:57:31 -0400 Subject: [PATCH] mame: fix debugger The -debug commandline option enables a general-purpose debugging UI that is built using QT. This was broken because the QT app wrapper was not being applied. Update the package to include wrapQtAppsHook. --- pkgs/applications/emulators/mame/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/emulators/mame/default.nix b/pkgs/applications/emulators/mame/default.nix index 5bb99274f3fc..401e13a6b67d 100644 --- a/pkgs/applications/emulators/mame/default.nix +++ b/pkgs/applications/emulators/mame/default.nix @@ -30,6 +30,7 @@ utf8proc, versionCheckHook, which, + wrapQtAppsHook, writeScript, zlib, darwin, @@ -76,8 +77,6 @@ stdenv.mkDerivation rec { "USE_SYSTEM_LIB_ZLIB=1" ]; - dontWrapQtApps = true; - # https://docs.mamedev.org/initialsetup/compilingmame.html buildInputs = [ @@ -116,6 +115,7 @@ stdenv.mkDerivation rec { pkg-config python3 which + wrapQtAppsHook ]; patches = [