libretro.mednafen-pce: move to retroarch/cores

This commit is contained in:
Thiago Kenji Okada 2024-11-19 11:39:35 +00:00
parent 1066bbd6a4
commit a00a3734e0
2 changed files with 25 additions and 9 deletions

View File

@ -93,15 +93,7 @@ lib.makeScope newScope (self: rec {
beetle-ngp = self.callPackage ./cores/beetle-ngp.nix { };
beetle-pce = mkLibretroCore {
core = "mednafen-pce";
repo = "beetle-pce";
makefile = "Makefile";
meta = {
description = "Port of Mednafen's PC Engine core to libretro";
license = lib.licenses.gpl2Only;
};
};
beetle-pce = self.callPackage ./cores/beetle-pce.nix { };
beetle-pce-fast = mkLibretroCore {
core = "mednafen-pce-fast";

View File

@ -0,0 +1,24 @@
{
lib,
fetchFromGitHub,
mkLibretroCore,
}:
mkLibretroCore {
core = "mednafen-pce";
version = "unstable-2024-11-15";
src = fetchFromGitHub {
owner = "libretro";
repo = "beetle-pce-libretro";
rev = "af28fb0385d00e0292c4703b3aa7e72762b564d2";
hash = "sha256-W+74RTIidSUdviihLy926OvlSdqMECvOLEEiWMtB50w=";
};
makefile = "Makefile";
meta = {
description = "Port of Mednafen's PC Engine core to libretro";
homepage = "https://github.com/libretro/beetle-pce-libretro";
license = lib.licenses.gpl2Only;
};
}