mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 02:13:23 +00:00
libretro.fbalpha2012: move to retroarch/cores
This commit is contained in:
parent
880d3c5665
commit
c0433e2a9c
@ -143,16 +143,7 @@ lib.makeScope newScope (self: rec {
|
||||
|
||||
eightyone = self.callPackage ./cores/eightyone.nix { };
|
||||
|
||||
fbalpha2012 = mkLibretroCore {
|
||||
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;
|
||||
};
|
||||
};
|
||||
fbalpha2012 = self.callPackage ./cores/fbalpha2012.nix { };
|
||||
|
||||
fbneo = mkLibretroCore {
|
||||
core = "fbneo";
|
||||
|
25
pkgs/applications/emulators/retroarch/cores/fbalpha2012.nix
Normal file
25
pkgs/applications/emulators/retroarch/cores/fbalpha2012.nix
Normal 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;
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user