libretro.virtualjaguar: move to retroarch/cores

This commit is contained in:
Thiago Kenji Okada 2024-11-20 15:17:16 +00:00
parent 0c15ac65d4
commit a994304cda
2 changed files with 25 additions and 8 deletions

View File

@ -268,14 +268,7 @@ lib.makeScope newScope (self: rec {
vecx = self.callPackage ./cores/vecx.nix { };
virtualjaguar = mkLibretroCore {
core = "virtualjaguar";
makefile = "Makefile";
meta = {
description = "Port of VirtualJaguar to libretro";
license = lib.licenses.gpl3Only;
};
};
virtualjaguar = self.callPackage ./cores/virtualjaguar.nix { };
yabause = mkLibretroCore {
core = "yabause";

View File

@ -0,0 +1,24 @@
{
lib,
fetchFromGitHub,
mkLibretroCore,
}:
mkLibretroCore {
core = "virtualjaguar";
version = "unstable-2024-10-21";
src = fetchFromGitHub {
owner = "libretro";
repo = "virtualjaguar-libretro";
rev = "48096c1f6f8b98cfff048a5cb4e6a86686631072";
hash = "sha256-DLBQQARHqupGGQS8YznDSSMuxQliyt5apGA4Ku2jlYo=";
};
makefile = "Makefile";
meta = {
description = "Port of VirtualJaguar to libretro";
homepage = "https://github.com/libretro/virtualjaguar-libretro";
license = lib.licenses.gpl3Only;
};
}