libretro.gpsp: move to retroarch/cores

This commit is contained in:
Thiago Kenji Okada 2024-11-19 16:24:13 +00:00
parent c887658db4
commit d5623dc94a
2 changed files with 25 additions and 8 deletions

View File

@ -161,14 +161,7 @@ lib.makeScope newScope (self: rec {
genesis-plus-gx = self.callPackage ./cores/genesis-plus-gx.nix { };
gpsp = mkLibretroCore {
core = "gpsp";
makefile = "Makefile";
meta = {
description = "Port of gpSP to libretro";
license = lib.licenses.gpl2Only;
};
};
gpsp = self.callPackage ./cores/gpsp.nix { };
gw = mkLibretroCore {
core = "gw";

View File

@ -0,0 +1,24 @@
{
lib,
fetchFromGitHub,
mkLibretroCore,
}:
mkLibretroCore {
core = "gpsp";
version = "unstable-2024-09-18";
src = fetchFromGitHub {
owner = "libretro";
repo = "gpsp";
rev = "36061caf8cc5e15c3c92fb772b6b8560c7c59ec7";
hash = "sha256-o36OUdgm7p+rAMN6R2e2Lqi4oBLTyxziw7Lr20ERBg0=";
};
makefile = "Makefile";
meta = {
description = "Port of gpSP to libretro";
homepage = "https://github.com/libretro/gpsp";
license = lib.licenses.gpl2Only;
};
}