1 { lib, buildKodiBinaryAddon, fetchFromGitHub, libretro, fuse }:
3 buildKodiBinaryAddon rec {
4 pname = "libretro-fuse";
5 namespace = "game.libretro.fuse";
8 src = fetchFromGitHub {
10 repo = "game.libretro.fuse";
11 rev = "${version}-Nexus";
12 hash = "sha256-MimwEV7YD6pMshxqbKTVbLDsPmMbqSy4HPnxwmKswpc=";
16 "-DFUSE_LIB=${fuse}/lib/retroarch/cores/fuse_libretro.so"
19 extraBuildInputs = [ fuse ];
20 propagatedBuildInputs = [
25 homepage = "https://github.com/kodi-game/game.libretro.fuse";
26 description = "Sinclair - ZX Spectrum (Fuse) GameClient for Kodi";
27 platforms = platforms.all;
28 license = licenses.gpl3Only;
29 maintainers = with maintainers; teams.kodi.members ++ [ kazenyuk ];