biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / video / kodi / addons / libretro-fuse / default.nix
blob776341b6079694cedf5d826187da601b101620d5
1 { lib, buildKodiBinaryAddon, fetchFromGitHub, libretro, fuse }:
3 buildKodiBinaryAddon rec {
4   pname = "libretro-fuse";
5   namespace = "game.libretro.fuse";
6   version = "1.6.0.34";
8   src = fetchFromGitHub {
9     owner = "kodi-game";
10     repo = "game.libretro.fuse";
11     rev = "${version}-Nexus";
12     hash = "sha256-MimwEV7YD6pMshxqbKTVbLDsPmMbqSy4HPnxwmKswpc=";
13   };
15   extraCMakeFlags = [
16     "-DFUSE_LIB=${fuse}/lib/retroarch/cores/fuse_libretro.so"
17   ];
19   extraBuildInputs = [ fuse ];
20   propagatedBuildInputs = [
21     libretro
22   ];
24   meta = with lib; {
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 ];
30   };