3
0
Fork 0
forked from mirrors/nixpkgs

mgba: git-20160325 -> 0.5.1

This commit is contained in:
AndersonTorres 2016-10-08 17:41:03 -03:00 committed by Robin Gloster
parent 717ff85b14
commit fd38aeafcd

View file

@ -1,21 +1,20 @@
{ stdenv, fetchgit { stdenv, fetchFromGitHub
, pkgconfig, cmake, libzip, epoxy, ffmpeg, imagemagick, SDL2 , pkgconfig, cmake, libzip, epoxy, ffmpeg, imagemagick, SDL2
, qtbase, qtmultimedia }: , qtbase, qtmultimedia }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "mgba-git-${version}"; name = "mgba-${version}";
version = "20160325"; version = "0.5.1";
src = fetchgit { src = fetchFromGitHub {
url = "https://github.com/mgba-emu/mgba.git"; owner = "mgba-emu";
rev = "be2641c77b4a438e0db487bc82b43bc27a26e0c2"; repo = "mgba";
sha256 = "1wxywfbkgqvb0j9cyz4nwsfzhxrdjcmvz1k7rljmy4bz1pjcglj1"; rev = version;
sha256 = "1ysxyy888qdwjbgsh3xdzsx8f3a5yd1gqx54xvndpv9v3zqgr2jf";
}; };
buildInputs = [ nativeBuildInputs = [ pkgconfig cmake ];
pkgconfig cmake libzip epoxy ffmpeg imagemagick SDL2 buildInputs = [ libzip epoxy ffmpeg imagemagick SDL2 qtbase qtmultimedia ];
qtbase qtmultimedia
];
meta = with stdenv.lib; { meta = with stdenv.lib; {
homepage = https://mgba.io; homepage = https://mgba.io;