libretro.prboom: move to retroarch/cores

This commit is contained in:
Thiago Kenji Okada 2024-11-20 13:24:09 +00:00
parent 215e0d4012
commit aa75a15f56
2 changed files with 25 additions and 8 deletions
pkgs/applications/emulators/retroarch

View File

@ -222,14 +222,7 @@ lib.makeScope newScope (self: rec {
ppsspp = self.callPackage ./cores/ppsspp.nix { };
prboom = mkLibretroCore {
core = "prboom";
makefile = "Makefile";
meta = {
description = "Prboom libretro port";
license = lib.licenses.gpl2Only;
};
};
prboom = self.callPackage ./cores/prboom.nix { };
prosystem = mkLibretroCore {
core = "prosystem";

View File

@ -0,0 +1,24 @@
{
lib,
fetchFromGitHub,
mkLibretroCore,
}:
mkLibretroCore {
core = "prboom";
version = "unstable-2024-10-21";
src = fetchFromGitHub {
owner = "libretro";
repo = "libretro-prboom";
rev = "d25ccfb9739069824d8fff99e3ae78a58a09df01";
hash = "sha256-IaMreS2MSkFdZ3Jff2FOZBvKIIa4KIkp41LIg3PLl44=";
};
makefile = "Makefile";
meta = {
description = "Prboom libretro port";
homepage = "https://github.com/libretro/libretro-prboom";
license = lib.licenses.gpl2Only;
};
}