Skip to content

Commit

Permalink
libretro: add parallel-n64 core
Browse files Browse the repository at this point in the history
  • Loading branch information
edwtjo committed Jun 7, 2017
1 parent f11d5c1 commit 44a9f37
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
14 changes: 14 additions & 0 deletions pkgs/misc/emulators/retroarch/cores.nix
Original file line number Diff line number Diff line change
Expand Up @@ -249,6 +249,20 @@ in
buildPhase = "cd libretro && make";
};

parallel-n64 = (mkLibRetroCore rec {
core = "parallel-n64";
src = fetchRetro {
repo = core;
rev = "3276db27547bf7ca85896427f0b82d4658694d88";
sha256 = "19396v50azrb52ifjk298zgcbxn8dvfvp6zwrnzsk6mp8ff7qcqw";
};
description = "Parallel Mupen64plus rewrite for libretro.";

extraBuildInputs = [ mesa libpng ];
}).override {
buildPhase = "make WITH_DYNAREC=${if stdenv.system == "x86_64-linux" then "x86_64" else "x86"}";
};

picodrive = (mkLibRetroCore rec {
core = "picodrive";
src = fetchRetro {
Expand Down
1 change: 1 addition & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -16471,6 +16471,7 @@ with pkgs;
++ optional (cfg.enableMGBA or false) mgba
++ optional (cfg.enableMupen64Plus or false) mupen64plus
++ optional (cfg.enableNestopia or false) nestopia
++ optional (cfg.enableParallelN64 or false) parallel-n64
++ optional (cfg.enablePicodrive or false) picodrive
++ optional (cfg.enablePrboom or false) prboom
++ optional (cfg.enablePPSSPP or false) ppsspp
Expand Down

0 comments on commit 44a9f37

Please sign in to comment.