libretro: add reicast core

This commit is contained in:
Christoph Hrdinka 2017-02-10 12:11:29 +01:00
parent 2fdb6d29ab
commit d04ee2f91c
No known key found for this signature in database
GPG Key ID: 72F8CDD6B2D585C9
2 changed files with 14 additions and 0 deletions

View File

@ -248,6 +248,19 @@ in
buildPhase = "make";
};
reicast = (mkLibRetroCore rec {
core = "reicast";
src = fetchRetro {
repo = core + "-emulator";
rev = "ed47c72cf2e124d9d753285fd61d12ea8e071d0d";
sha256 = "05dw7qjnprf1lw3ps0sb7sp73hsh1a27rxbwjqd26j85zr84g3r9";
};
description = "Reicast libretro port";
extraBuildInputs = [ mesa ];
}).override {
buildPhase = "make";
};
scummvm = (mkLibRetroCore rec {
core = "scummvm";
src = fetchRetro {

View File

@ -15599,6 +15599,7 @@ with pkgs;
++ optional (cfg.enablePrboom or false) prboom
++ optional (cfg.enablePPSSPP or false) ppsspp
++ optional (cfg.enableQuickNES or false) quicknes
++ optional (cfg.enableReicast or false) reicast
++ optional (cfg.enableScummVM or false) scummvm
++ optional (cfg.enableSnes9x or false) snes9x
++ optional (cfg.enableSnes9xNext or false) snes9x-next