kodi.packages.libretro-snes9x: init at 1.60.0.29

This commit is contained in:
Aaron Andersen 2021-10-30 15:59:56 -04:00
parent fe0e4fd20e
commit 020738a1fb
2 changed files with 38 additions and 1 deletions

View file

@ -0,0 +1,31 @@
{ lib, rel, buildKodiBinaryAddon, fetchFromGitHub, libretro, snes9x }:
buildKodiBinaryAddon rec {
pname = "kodi-libretro-snes9x";
namespace = "game.libretro.snes9x";
version = "1.60.0.29";
src = fetchFromGitHub {
owner = "kodi-game";
repo = "game.libretro.snes9x";
rev = "${version}-${rel}";
sha256 = "1wyfkg4fncc604alnbaqk92fi1h80n7bwiqfkb8479x5517byab1";
};
extraCMakeFlags = [
"-DSNES9X_LIB=${snes9x}/lib/retroarch/cores/snes9x_libretro.so"
];
extraBuildInputs = [ snes9x ];
propagatedBuildInputs = [
libretro
];
meta = with lib; {
homepage = "https://github.com/kodi-game/game.libretro.snes9x";
description = "Snes9X GameClient for Kodi";
platforms = platforms.all;
license = licenses.gpl2Only;
maintainers = teams.kodi.members;
};
}

View file

@ -1,7 +1,11 @@
{ lib, newScope, kodi }:
{ lib, newScope, kodi, libretro }:
with lib;
let
inherit (libretro) snes9x;
in
let self = rec {
addonDir = "/share/kodi/addons";
@ -70,6 +74,8 @@ let self = rec {
libretro = callPackage ../applications/video/kodi-packages/libretro { };
libretro-snes9x = callPackage ../applications/video/kodi-packages/libretro-snes9x { inherit snes9x; };
jellyfin = callPackage ../applications/video/kodi-packages/jellyfin { };
joystick = callPackage ../applications/video/kodi-packages/joystick { };