nixpkgs/pkgs/applications/video/kodi/addons/libretro-fuse/default.nix
Fernando Rodrigues 05580f4b44
treewide: switch instances of lib.teams.*.members to the new meta.teams attribute
Follow-up to #394797.

Signed-off-by: Fernando Rodrigues <alpha@sigmasquadron.net>
2025-04-25 22:20:17 -03:00

38 lines
852 B
Nix

{
lib,
buildKodiBinaryAddon,
fetchFromGitHub,
libretro,
fuse,
}:
buildKodiBinaryAddon rec {
pname = "libretro-fuse";
namespace = "game.libretro.fuse";
version = "1.6.0.34";
src = fetchFromGitHub {
owner = "kodi-game";
repo = "game.libretro.fuse";
rev = "${version}-Nexus";
hash = "sha256-MimwEV7YD6pMshxqbKTVbLDsPmMbqSy4HPnxwmKswpc=";
};
extraCMakeFlags = [
"-DFUSE_LIB=${fuse}/lib/retroarch/cores/fuse_libretro.so"
];
extraBuildInputs = [ fuse ];
propagatedBuildInputs = [
libretro
];
meta = with lib; {
homepage = "https://github.com/kodi-game/game.libretro.fuse";
description = "Sinclair - ZX Spectrum (Fuse) GameClient for Kodi";
platforms = platforms.all;
license = licenses.gpl3Only;
maintainers = with maintainers; [ kazenyuk ];
teams = [ teams.kodi ];
};
}