summary refs log tree commit diff
path: root/pkgs/applications/emulators
diff options
context:
space:
mode:
authorSander van der Burg <svanderburg@gmail.com>2023-10-12 18:02:28 +0200
committerAnderson Torres <torres.anderson.85@protonmail.com>2023-10-12 15:05:01 -0300
commit2d1830dc220ae894393b6227432c6469b0d02aee (patch)
tree6374d4ce46a94b72108652108aa48a2ea62753c4 /pkgs/applications/emulators
parent093f098d2684283c8a0ea9b156a6edbbfff66e02 (diff)
fs-uae-launcher: fix F12 menu in a running emulator session
Adding the shared/ folder allows fs-uae to find the icons
Diffstat (limited to 'pkgs/applications/emulators')
-rw-r--r--pkgs/applications/emulators/fs-uae/launcher.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/applications/emulators/fs-uae/launcher.nix b/pkgs/applications/emulators/fs-uae/launcher.nix
index 6135ee064e15b..51349182832a9 100644
--- a/pkgs/applications/emulators/fs-uae/launcher.nix
+++ b/pkgs/applications/emulators/fs-uae/launcher.nix
@@ -36,10 +36,11 @@ stdenv.mkDerivation (finalAttrs: {
     wrapQtApp "$out/bin/fs-uae-launcher" \
       --set PYTHONPATH "$PYTHONPATH"
 
-    # fs-uae-launcher search side by side for fs-uae
+    # fs-uae-launcher search side by side for executables and shared files
     # see $src/fsgs/plugins/pluginexecutablefinder.py#find_executable
     ln -s ${fsuae}/bin/fs-uae $out/bin
     ln -s ${fsuae}/bin/fs-uae-device-helper $out/bin
+    ln -s ${fsuae}/share/fs-uae $out/share/fs-uae
   '';
 
   meta = {