1{
2 lib,
3 fetchFromGitHub,
4 mkLibretroCore,
5}:
6mkLibretroCore {
7 core = "fceumm";
8 version = "0-unstable-2025-05-02";
9
10 src = fetchFromGitHub {
11 owner = "libretro";
12 repo = "libretro-fceumm";
13 rev = "3544ff567ecc417c170641587083b976739ef9db";
14 hash = "sha256-eNmzWLJVPeqFFEcFIhOQCn9OMrBp0iraTcft5pJVvvE=";
15 };
16
17 meta = {
18 description = "FCEUmm libretro port";
19 homepage = "https://github.com/libretro/libretro-fceumm";
20 license = lib.licenses.gpl2Only;
21 };
22}