summary refs log tree commit diff
path: root/pkgs/misc
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/misc')
-rw-r--r--pkgs/misc/emulators/mgba/default.nix12
1 files changed, 5 insertions, 7 deletions
diff --git a/pkgs/misc/emulators/mgba/default.nix b/pkgs/misc/emulators/mgba/default.nix
index 4d0f9855271..c15c8a0ad76 100644
--- a/pkgs/misc/emulators/mgba/default.nix
+++ b/pkgs/misc/emulators/mgba/default.nix
@@ -9,6 +9,7 @@
 , libedit
 , libelf
 , libzip
+, copyDesktopItems
 , makeDesktopItem
 , minizip
 , pkg-config
@@ -48,8 +49,8 @@ stdenv.mkDerivation rec {
     qttools
   ];
 
-  postInstall = let
-    desktopItem = makeDesktopItem {
+  desktopItems = [
+    (makeDesktopItem {
       name = "mgba";
       exec = "mgba-qt";
       icon = "mgba";
@@ -58,11 +59,8 @@ stdenv.mkDerivation rec {
       genericName = "Game Boy Advance Emulator";
       categories = "Game;Emulator;";
       startupNotify = "false";
-    };
-  in
-    ''
-      cp -r ${desktopItem}/share/applications $out/share
-    '';
+    })
+  ];
 
   meta = with lib; {
     homepage = "https://mgba.io";