pokemini: Add pokemini libretro core for RetroArch

This commit is contained in:
jay
2026-06-02 08:34:23 -04:00
parent 60fe2249ec
commit b0e90aeb66
2 changed files with 26 additions and 0 deletions
@@ -0,0 +1,24 @@
{
lib,
fetchFromGitHub,
mkLibretroCore,
}:
mkLibretroCore {
core = "pokemini";
version = "0-unstable-2026-04-20";
src = fetchFromGitHub {
owner = "libretro";
repo = "PokeMini";
rev = "bb009b1379ad15f1514f20ca7cbf710b4af42b3e";
hash = "sha256-iXHUk0gWciJCKfbfIa2pOBPIOeKg1yRahNKesLRC8v8=";
};
makefile = "Makefile";
meta = {
description = "Obscure nintendo handheld emulator";
homepage = "https://github.com/libretro/PokeMini";
license = lib.licenses.gpl3Only;
};
}
@@ -141,6 +141,8 @@ lib.makeScope newScope (self: {
picodrive = self.callPackage ./cores/picodrive.nix { };
pokemini = self.callPackage ./cores/pokemini.nix { };
play = self.callPackage ./cores/play.nix { };
ppsspp = self.callPackage ./cores/ppsspp.nix { };