openxray: 2188-november-2023-rc1 -> 2921-january-2025-rc1 (#375925)
[NixPkgs.git] / pkgs / applications / video / kodi / addons / libretro-fuse / default.nix
blob0524dc485304fe09ad973c6c983065771dd98800
2   lib,
3   buildKodiBinaryAddon,
4   fetchFromGitHub,
5   libretro,
6   fuse,
7 }:
9 buildKodiBinaryAddon rec {
10   pname = "libretro-fuse";
11   namespace = "game.libretro.fuse";
12   version = "1.6.0.34";
14   src = fetchFromGitHub {
15     owner = "kodi-game";
16     repo = "game.libretro.fuse";
17     rev = "${version}-Nexus";
18     hash = "sha256-MimwEV7YD6pMshxqbKTVbLDsPmMbqSy4HPnxwmKswpc=";
19   };
21   extraCMakeFlags = [
22     "-DFUSE_LIB=${fuse}/lib/retroarch/cores/fuse_libretro.so"
23   ];
25   extraBuildInputs = [ fuse ];
26   propagatedBuildInputs = [
27     libretro
28   ];
30   meta = with lib; {
31     homepage = "https://github.com/kodi-game/game.libretro.fuse";
32     description = "Sinclair - ZX Spectrum (Fuse) GameClient for Kodi";
33     platforms = platforms.all;
34     license = licenses.gpl3Only;
35     maintainers = with maintainers; teams.kodi.members ++ [ kazenyuk ];
36   };