mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-28 08:33:54 +00:00
libretro.virtualjaguar: move to retroarch/cores
This commit is contained in:
parent
0c15ac65d4
commit
a994304cda
@ -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";
|
||||
|
@ -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;
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user