mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 16:33:15 +00:00
libretro.fceumm: move to retroarch/cores
This commit is contained in:
parent
b3de16f47c
commit
1e7e62c52a
@ -147,13 +147,7 @@ lib.makeScope newScope (self: rec {
|
||||
|
||||
fbneo = self.callPackage ./cores/fbneo.nix { };
|
||||
|
||||
fceumm = mkLibretroCore {
|
||||
core = "fceumm";
|
||||
meta = {
|
||||
description = "FCEUmm libretro port";
|
||||
license = lib.licenses.gpl2Only;
|
||||
};
|
||||
};
|
||||
fceumm = self.callPackage ./cores/fceumm.nix { };
|
||||
|
||||
flycast = mkLibretroCore {
|
||||
core = "flycast";
|
||||
|
22
pkgs/applications/emulators/retroarch/cores/fceumm.nix
Normal file
22
pkgs/applications/emulators/retroarch/cores/fceumm.nix
Normal file
@ -0,0 +1,22 @@
|
||||
{
|
||||
lib,
|
||||
fetchFromGitHub,
|
||||
mkLibretroCore,
|
||||
}:
|
||||
mkLibretroCore {
|
||||
core = "fceumm";
|
||||
version = "unstable-2024-09-23";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "libretro";
|
||||
repo = "libretro-fceumm";
|
||||
rev = "e226068f979cd8fbfc3be9780d16cfb1405095b0";
|
||||
hash = "sha256-2G5EzcDJkEhaN+nXi/wu3+Ejim04ZzOr+LW69cLAEuM=";
|
||||
};
|
||||
|
||||
meta = {
|
||||
description = "FCEUmm libretro port";
|
||||
homepage = "https://github.com/libretro/libretro-fceumm";
|
||||
license = lib.licenses.gpl2Only;
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user