libretro.vecx: move to retroarch/cores

This commit is contained in:
Thiago Kenji Okada
2024-11-22 09:53:00 +00:00
parent 52d42220c3
commit 0c15ac65d4
2 changed files with 30 additions and 8 deletions
@@ -266,14 +266,7 @@ lib.makeScope newScope (self: rec {
vba-next = self.callPackage ./cores/vba-next.nix { };
vecx = mkLibretroCore {
core = "vecx";
extraBuildInputs = [ libGL libGLU ];
meta = {
description = "Port of Vecx to libretro";
license = lib.licenses.gpl3Only;
};
};
vecx = self.callPackage ./cores/vecx.nix { };
virtualjaguar = mkLibretroCore {
core = "virtualjaguar";
@@ -0,0 +1,29 @@
{
lib,
fetchFromGitHub,
libGL,
libGLU,
mkLibretroCore,
}:
mkLibretroCore {
core = "vecx";
version = "unstable-2024-06-28";
src = fetchFromGitHub {
owner = "libretro";
repo = "libretro-vecx";
rev = "0e48a8903bd9cc359da3f7db783f83e22722c0cf";
hash = "sha256-lB8NSaxDbN2qljhI0M/HFDuN0D/wMhFUQXhfSdGHsHU=";
};
extraBuildInputs = [
libGL
libGLU
];
meta = {
description = "VBA-M libretro port with modifications for speed";
homepage = "https://github.com/libretro/libretro-vecx";
license = lib.licenses.gpl3Only;
};
}