libretro.fceumm: move to retroarch/cores

This commit is contained in:
Thiago Kenji Okada 2024-11-19 15:56:41 +00:00
parent b3de16f47c
commit 1e7e62c52a
2 changed files with 23 additions and 7 deletions

View File

@ -147,13 +147,7 @@ lib.makeScope newScope (self: rec {
fbneo = self.callPackage ./cores/fbneo.nix { }; fbneo = self.callPackage ./cores/fbneo.nix { };
fceumm = mkLibretroCore { fceumm = self.callPackage ./cores/fceumm.nix { };
core = "fceumm";
meta = {
description = "FCEUmm libretro port";
license = lib.licenses.gpl2Only;
};
};
flycast = mkLibretroCore { flycast = mkLibretroCore {
core = "flycast"; core = "flycast";

View File

@ -0,0 +1,22 @@
{
lib,
fetchFromGitHub,
mkLibretroCore,
}:
mkLibretroCore {
core = "fceumm";
version = "unstable-2024-09-23";
src = fetchFromGitHub {
owner = "libretro";
repo = "libretro-fceumm";
rev = "e226068f979cd8fbfc3be9780d16cfb1405095b0";
hash = "sha256-2G5EzcDJkEhaN+nXi/wu3+Ejim04ZzOr+LW69cLAEuM=";
};
meta = {
description = "FCEUmm libretro port";
homepage = "https://github.com/libretro/libretro-fceumm";
license = lib.licenses.gpl2Only;
};
}