3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #198797 from SuperSamus/mgba-desktop

mgba: don't create desktop file
This commit is contained in:
Anderson Torres 2022-11-01 14:42:55 -03:00 committed by GitHub
commit c5f073cb0c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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";