mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
Merge pull request #239799 from nvmd/init/kodiPackages.libretro-fuse
kodiPackages.libretro-fuse: init at 1.6.0.34
This commit is contained in:
commit
6e664b0eba
@ -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 ];
|
||||
};
|
||||
}
|
@ -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; };
|
||||
|
Loading…
Reference in New Issue
Block a user