mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 10:23:29 +00:00
libretro.beetle-supafaust: move to retroarch/cores
This commit is contained in:
parent
53e34f0721
commit
ba415c8b02
@ -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";
|
||||
|
@ -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;
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user