nixpkgs/pkgs/applications/video/kodi/addons/libretro-gw/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
766 B
Nix

{
lib,
rel,
buildKodiBinaryAddon,
fetchFromGitHub,
libretro,
gw,
}:
buildKodiBinaryAddon rec {
pname = "libretro-gw";
namespace = "game.libretro.gw";
version = "1.6.3.34";
src = fetchFromGitHub {
owner = "kodi-game";
repo = "game.libretro.gw";
rev = "${version}-${rel}";
hash = "sha256-HYXR3cEjbdKgKy42nq36Ii3UyxRVuQVROQjyaxSp5Ro=";
};
extraCMakeFlags = [
"-DGW_LIB=${gw}/lib/retroarch/cores/gw_libretro.so"
];
extraBuildInputs = [ gw ];
propagatedBuildInputs = [
libretro
];
meta = with lib; {
homepage = "https://github.com/kodi-game/game.libretro.gw";
description = "Game and Watch for Kodi";
platforms = platforms.all;
license = licenses.gpl2Only;
teams = [ teams.kodi ];
};
}