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
855 B
Nix

{
lib,
buildKodiBinaryAddon,
fetchFromGitHub,
libretro,
genesis-plus-gx,
}:
buildKodiBinaryAddon rec {
pname = "kodi-libretro-genplus";
namespace = "game.libretro.genplus";
version = "1.7.4.35";
src = fetchFromGitHub {
owner = "kodi-game";
repo = "game.libretro.genplus";
rev = "${version}-Matrix";
sha256 = "sha256-F3bt129lBZKlDtp7X0S0q10T9k9C2zNeHG+yIP3818Q=";
};
extraCMakeFlags = [
"-DGENPLUS_LIB=${genesis-plus-gx}/lib/retroarch/cores/genesis_plus_gx_libretro.so"
];
extraBuildInputs = [ genesis-plus-gx ];
propagatedBuildInputs = [
libretro
];
meta = with lib; {
homepage = "https://github.com/kodi-game/game.libretro.genplus";
description = "Genesis Plus GX GameClient for Kodi";
platforms = platforms.all;
license = licenses.gpl2Only;
teams = [ teams.kodi ];
};
}