libretro.fbalpha2012: move to retroarch/cores

This commit is contained in:
Thiago Kenji Okada 2024-11-19 14:57:04 +00:00
parent 880d3c5665
commit c0433e2a9c
2 changed files with 26 additions and 10 deletions

View File

@ -143,16 +143,7 @@ lib.makeScope newScope (self: rec {
eightyone = self.callPackage ./cores/eightyone.nix { }; eightyone = self.callPackage ./cores/eightyone.nix { };
fbalpha2012 = mkLibretroCore { fbalpha2012 = self.callPackage ./cores/fbalpha2012.nix { };
core = "fbalpha2012";
makefile = "makefile.libretro";
preBuild = "cd svn-current/trunk";
meta = {
description = "Port of Final Burn Alpha ~2012 to libretro";
# Non-commercial clause
license = lib.licenses.unfreeRedistributable;
};
};
fbneo = mkLibretroCore { fbneo = mkLibretroCore {
core = "fbneo"; core = "fbneo";

View File

@ -0,0 +1,25 @@
{
lib,
fetchFromGitHub,
mkLibretroCore,
}:
mkLibretroCore {
core = "fbalpha2012";
version = "unstable-2024-10-21";
src = fetchFromGitHub {
owner = "libretro";
repo = "fbalpha2012";
rev = "77167cea72e808384c136c8c163a6b4975ce7a84";
hash = "sha256-giEV09dT/e82bmDlRkxpkW04JcsEZc/enIPecqYtg3c=";
};
makefile = "makefile.libretro";
preBuild = "cd svn-current/trunk";
meta = {
description = "Port of Final Burn Alpha ~2012 to libretro";
homepage = "https://github.com/libretro/fbalpha2012";
license = lib.licenses.unfreeRedistributable;
};
}