libretro.beetle-supafaust: move to retroarch/cores

This commit is contained in:
Thiago Kenji Okada 2024-11-19 12:15:18 +00:00
parent 53e34f0721
commit ba415c8b02
2 changed files with 25 additions and 9 deletions

View File

@ -105,15 +105,7 @@ lib.makeScope newScope (self: rec {
beetle-saturn = self.callPackage ./cores/beetle-saturn.nix { };
beetle-supafaust = mkLibretroCore {
core = "mednafen-supafaust";
repo = "beetle-supafaust";
makefile = "Makefile";
meta = {
description = "Port of Mednafen's experimental snes_faust core to libretro";
license = lib.licenses.gpl2Plus;
};
};
beetle-supafaust = self.callPackage ./cores/beetle-supafaust.nix { };
beetle-supergrafx = mkLibretroCore {
core = "mednafen-supergrafx";

View File

@ -0,0 +1,24 @@
{
lib,
fetchFromGitHub,
mkLibretroCore,
}:
mkLibretroCore {
core = "mednafen-supafaust";
version = "unstable-2024-10-01";
src = fetchFromGitHub {
owner = "libretro";
repo = "supafaust";
rev = "e25f66765938d33f9ad5850e8d6cd597e55b7299";
hash = "sha256-ZgOXHhEHt54J2B1q6uA8v6uOK53g7idJlgoC4guTGow=";
};
makefile = "Makefile";
meta = {
description = "Port of Mednafen's experimental snes_faust core to libretro";
homepage = "https://github.com/libretro/supafaust";
license = lib.licenses.gpl2Only;
};
}