11c93653c7
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/mgba/versions
64 lines
1.9 KiB
Nix
64 lines
1.9 KiB
Nix
{ stdenv, fetchFromGitHub, makeDesktopItem, wrapQtAppsHook, pkgconfig
|
|
, cmake, epoxy, libzip, ffmpeg, imagemagick, SDL2, qtbase, qtmultimedia, libedit
|
|
, qttools, minizip }:
|
|
|
|
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 {
|
|
pname = "mgba";
|
|
version = "0.7.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mgba-emu";
|
|
repo = "mgba";
|
|
rev = version;
|
|
sha256 = "1wrmwh50rv8bd328r8cisrihq6h90kx2bfb0vmjfbsd3l1jvgrgm";
|
|
};
|
|
|
|
enableParallelBuilding = true;
|
|
nativeBuildInputs = [ wrapQtAppsHook pkgconfig cmake ];
|
|
|
|
buildInputs = [
|
|
libzip epoxy ffmpeg imagemagick SDL2 qtbase qtmultimedia libedit minizip
|
|
qttools
|
|
];
|
|
|
|
postInstall = ''
|
|
cp -r ${desktopItem}/share/applications $out/share
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://mgba.io;
|
|
description = "A modern GBA emulator with a focus on accuracy";
|
|
|
|
longDescription = ''
|
|
mGBA is a new Game Boy Advance emulator written in C.
|
|
|
|
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.
|
|
'';
|
|
|
|
license = licenses.mpl20;
|
|
maintainers = with maintainers; [ MP2E AndersonTorres ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|