mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 16:33:15 +00:00
libretro.genesis-plus-gx: move to retroarch/cores
This commit is contained in:
parent
7d2f1f1ce1
commit
c887658db4
@ -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";
|
||||
|
@ -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;
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user