kodiPackages.libretro-fuse: init at 1.6.0.34

This commit is contained in:
Sergey Kazenyuk 2023-05-29 13:53:30 +03:00
parent 6d2647ba62
commit 0cd76cf948
2 changed files with 34 additions and 1 deletions

View File

@ -0,0 +1,31 @@
{ 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; teams.kodi.members ++ [ kazenyuk ];
};
}

View File

@ -3,7 +3,7 @@
with lib;
let
inherit (libretro) genesis-plus-gx mgba snes9x twenty-fortyeight;
inherit (libretro) fuse genesis-plus-gx mgba snes9x twenty-fortyeight;
in
let self = rec {
@ -64,6 +64,8 @@ let self = rec {
libretro-2048 = callPackage ../applications/video/kodi/addons/libretro-2048 { inherit twenty-fortyeight; };
libretro-fuse = callPackage ../applications/video/kodi/addons/libretro-fuse { inherit fuse; };
libretro-genplus = callPackage ../applications/video/kodi/addons/libretro-genplus { inherit genesis-plus-gx; };
libretro-mgba = callPackage ../applications/video/kodi/addons/libretro-mgba { inherit mgba; };