From d5769b9d915adb0ee8895c65181b7f77b713b603 Mon Sep 17 00:00:00 2001 From: Martino Fontana Date: Mon, 31 Oct 2022 16:30:50 +0100 Subject: [PATCH] mgba: don't create desktop file --- pkgs/applications/emulators/mgba/default.nix | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/pkgs/applications/emulators/mgba/default.nix b/pkgs/applications/emulators/mgba/default.nix index ce0ea6d6de8b..d8aec3aa54c2 100644 --- a/pkgs/applications/emulators/mgba/default.nix +++ b/pkgs/applications/emulators/mgba/default.nix @@ -3,7 +3,6 @@ , fetchFromGitHub , SDL2 , cmake -, copyDesktopItems , ffmpeg , imagemagick , libedit @@ -11,7 +10,6 @@ , libepoxy , libzip , lua -, makeDesktopItem , minizip , pkg-config , qtbase @@ -33,7 +31,6 @@ stdenv.mkDerivation (finalAttrs: { nativeBuildInputs = [ cmake - copyDesktopItems pkg-config wrapQtAppsHook ]; @@ -53,19 +50,6 @@ stdenv.mkDerivation (finalAttrs: { qttools ]; - desktopItems = [ - (makeDesktopItem { - name = "mgba"; - exec = "mgba-qt"; - icon = "mgba"; - comment = "A Game Boy Advance Emulator"; - desktopName = "mgba"; - genericName = "Game Boy Advance Emulator"; - categories = [ "Game" "Emulator" ]; - startupNotify = false; - }) - ]; - meta = with lib; { homepage = "https://mgba.io"; description = "A modern GBA emulator with a focus on accuracy";