3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/misc/emulators/mgba/default.nix

25 lines
653 B
Nix
Raw Normal View History

2015-09-19 16:01:25 +01:00
{ stdenv, fetchurl, cmake, ffmpeg, imagemagick, libzip, pkgconfig, qt5, SDL2 }:
stdenv.mkDerivation rec {
name = "mgba-0.3.0";
src = fetchurl {
url = https://github.com/mgba-emu/mgba/archive/0.3.0.tar.gz;
sha256 = "02zz6bdcwr1fx7i7dacff0s8mwp0pvabycp282qvhhx44x44q7fm";
};
2015-09-19 16:01:25 +01:00
buildInputs = [
cmake ffmpeg imagemagick libzip pkgconfig qt5.base qt5.multimedia
SDL2
];
enableParallelBuilding = true;
meta = {
homepage = https://endrist.com/mgba/;
description = "A modern GBA emulator with a focus on accuracy";
license = stdenv.lib.licenses.mpl20;
maintainers = with stdenv.lib.maintainers; [ MP2E ];
};
}