retroarch: update to 0.9.9.7
This commit is contained in:
parent
9b273eb971
commit
88b9e1f191
@ -1,27 +1,31 @@
|
|||||||
{ stdenv, fetchurl, pkgconfig, which
|
{ stdenv, fetchgit, pkgconfig, which
|
||||||
, SDL, mesa, alsaLib
|
, SDL, mesa, alsaLib
|
||||||
|
, libXxf86vm, libXinerama, libXv
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "retroarch-0.9.9";
|
name = "retroarch-0.9.9.7";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchgit {
|
||||||
url = "http://themaister.net/retroarch-dl/${name}.tar.gz";
|
url = "https://github.com/libretro/RetroArch.git";
|
||||||
sha256 = "08xlndpl14c4ccgp752ixx3a7ajf3xp93nawhinwxq0cw801prda";
|
rev = "ea0c4880556e0f9d1fe8253ddc713bc743b00e1b";
|
||||||
|
sha256 = "1jhyh7f8ijy67fxslxqsp8pjl2lwayjljp06hp4n5cn33yajpbd7";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
pkgconfig which SDL mesa alsaLib
|
pkgconfig which SDL mesa alsaLib
|
||||||
|
libXxf86vm libXinerama libXv
|
||||||
];
|
];
|
||||||
|
|
||||||
preConfigure = ''
|
preConfigure = ''
|
||||||
configureFlags="--global-config-dir=$out/etc"
|
configureFlags="--global-config-dir=$out/etc"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "A cross-platform multi-system emulator";
|
description = "Modular multi-system game/emulator system";
|
||||||
homepage = "http://themaister.net/retroarch.html";
|
homepage = "http://www.libretro.com/";
|
||||||
license = stdenv.lib.licenses.gpl3Plus;
|
license = stdenv.lib.licenses.gpl3Plus;
|
||||||
platform = stdenv.lib.platforms.linux;
|
platforms = stdenv.lib.platforms.linux;
|
||||||
|
maintainers = with stdenv.lib.maintainers; [ iyzsong ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user