nixpkgs/pkgs/misc/emulators/mgba/default.nix

42 lines
1.4 KiB
Nix
Raw Normal View History

2015-12-20 02:12:57 +00:00
{ stdenv, fetchurl, pkgconfig, cmake, ffmpeg, imagemagick, libzip, SDL2
, qtbase, qtmultimedia }:
stdenv.mkDerivation rec {
2015-12-16 01:29:31 +00:00
name = "mgba-${meta.version}";
src = fetchurl {
2015-12-16 01:29:31 +00:00
url = "https://github.com/mgba-emu/mgba/archive/${meta.version}.tar.gz";
sha256 = "0z52w4dkgjjviwi6w13gls082zclljgx1sa8nlyb1xcnnrn6980l";
};
2015-09-19 15:01:25 +00:00
buildInputs = [
2015-12-16 01:29:31 +00:00
pkgconfig cmake ffmpeg imagemagick libzip SDL2
2015-12-20 02:12:57 +00:00
qtbase qtmultimedia
2015-09-19 15:01:25 +00:00
];
enableParallelBuilding = true;
2015-12-16 01:29:31 +00:00
meta = with stdenv.lib; {
version = "0.3.1";
homepage = https://mgba.io;
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.
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 ];
};
}