libretro.genesis-plus-gx: move to retroarch/cores

This commit is contained in:
Thiago Kenji Okada 2024-11-19 16:21:48 +00:00
parent 7d2f1f1ce1
commit c887658db4
2 changed files with 23 additions and 8 deletions

View File

@ -159,14 +159,7 @@ lib.makeScope newScope (self: rec {
gambatte = self.callPackage ./cores/gambatte.nix { };
genesis-plus-gx = mkLibretroCore {
core = "genesis-plus-gx";
meta = {
description = "Enhanced Genesis Plus libretro port";
# Non-commercial clause
license = lib.licenses.unfreeRedistributable;
};
};
genesis-plus-gx = self.callPackage ./cores/genesis-plus-gx.nix { };
gpsp = mkLibretroCore {
core = "gpsp";

View File

@ -0,0 +1,22 @@
{
lib,
fetchFromGitHub,
mkLibretroCore,
}:
mkLibretroCore {
core = "genesis-plus-gx";
version = "unstable-2024-09-18";
src = fetchFromGitHub {
owner = "libretro";
repo = "Genesis-Plus-GX";
rev = "7de0f0b6cde9bda1235b448aa607044b3f80ab3c";
hash = "sha256-W06vSrGKbXMcXIouW9/fD93sBfwREqIL8HvB3kan0tM=";
};
meta = {
description = "Enhanced Genesis Plus libretro port";
homepage = "https://github.com/libretro/Genesis-Plus-GX";
license = lib.licenses.unfreeRedistributable;
};
}