Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
39 lines
766 B
Nix
39 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 ];
|
|
};
|
|
}
|