2021-04-27 01:13:14 +01:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, SDL2
|
|
|
|
, cmake
|
|
|
|
, epoxy
|
|
|
|
, ffmpeg
|
|
|
|
, imagemagick
|
|
|
|
, libedit
|
|
|
|
, libelf
|
|
|
|
, libzip
|
|
|
|
, makeDesktopItem
|
|
|
|
, minizip
|
|
|
|
, pkg-config
|
|
|
|
, qtbase
|
|
|
|
, qtmultimedia
|
|
|
|
, qttools
|
|
|
|
, wrapQtAppsHook
|
|
|
|
}:
|
2015-08-18 02:00:33 +01:00
|
|
|
|
2018-06-19 08:12:41 +01:00
|
|
|
let
|
|
|
|
desktopItem = 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";
|
|
|
|
};
|
|
|
|
in stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "mgba";
|
2021-03-30 15:48:56 +01:00
|
|
|
version = "0.9.0";
|
2016-04-13 19:55:33 +01:00
|
|
|
|
2016-10-08 21:41:03 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "mgba-emu";
|
|
|
|
repo = "mgba";
|
|
|
|
rev = version;
|
2021-04-27 01:13:14 +01:00
|
|
|
hash = "sha256-JVauGyHJVfiXVG4Z+Ydh1lRypy5rk9SKeTbeHFNFYJs=";
|
2015-08-18 02:00:33 +01:00
|
|
|
};
|
|
|
|
|
2021-04-27 01:13:14 +01:00
|
|
|
nativeBuildInputs = [
|
|
|
|
cmake
|
|
|
|
pkg-config
|
|
|
|
wrapQtAppsHook
|
|
|
|
];
|
2018-06-16 04:23:12 +01:00
|
|
|
buildInputs = [
|
2021-04-27 01:13:14 +01:00
|
|
|
SDL2
|
|
|
|
epoxy
|
|
|
|
ffmpeg
|
|
|
|
imagemagick
|
|
|
|
libedit
|
|
|
|
libelf
|
|
|
|
libzip
|
|
|
|
minizip
|
|
|
|
qtbase
|
|
|
|
qtmultimedia
|
|
|
|
qttools
|
2018-01-01 20:07:59 +00:00
|
|
|
];
|
|
|
|
|
2018-06-19 08:12:41 +01:00
|
|
|
postInstall = ''
|
|
|
|
cp -r ${desktopItem}/share/applications $out/share
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://mgba.io";
|
2015-08-18 02:00:33 +01:00
|
|
|
description = "A modern GBA emulator with a focus on accuracy";
|
2015-12-16 01:29:31 +00:00
|
|
|
longDescription = ''
|
|
|
|
mGBA is a new Game Boy Advance emulator written in C.
|
|
|
|
|
2021-04-27 01:13:14 +01:00
|
|
|
The project started in April 2013 with the goal of being fast enough to
|
|
|
|
run on lower end hardware than other emulators support, without
|
|
|
|
sacrificing accuracy or portability. Even in the initial version, games
|
|
|
|
generally play without problems. It is loosely based on the previous
|
|
|
|
GBA.js emulator, although very little of GBA.js can still be seen in mGBA.
|
|
|
|
|
|
|
|
Other goals include accurate enough emulation to provide a development
|
|
|
|
environment for homebrew software, a good workflow for tool-assist
|
|
|
|
runners, and a modern feature set for emulators that older emulators may
|
|
|
|
not support.
|
2015-12-16 01:29:31 +00:00
|
|
|
'';
|
2018-06-16 04:23:12 +01:00
|
|
|
|
2015-12-16 01:29:31 +00:00
|
|
|
license = licenses.mpl20;
|
|
|
|
maintainers = with maintainers; [ MP2E AndersonTorres ];
|
2018-06-16 04:23:12 +01:00
|
|
|
platforms = platforms.linux;
|
2015-08-18 02:00:33 +01:00
|
|
|
};
|
|
|
|
}
|
2021-04-27 01:13:14 +01:00
|
|
|
# TODO [ AndersonTorres ]: use desktopItem functions
|