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

33 lines
589 B
Nix

{
lib,
rel,
buildKodiBinaryAddon,
fetchFromGitHub,
tinyxml,
udev,
}:
buildKodiBinaryAddon rec {
pname = namespace;
namespace = "peripheral.joystick";
version = "20.1.9";
src = fetchFromGitHub {
owner = "xbmc";
repo = namespace;
rev = "${version}-${rel}";
sha256 = "sha256-xJh9Rj+PcxrgGomEsKnQcO/yZDQCnG6gNBwfK2JGuNA=";
};
extraBuildInputs = [
tinyxml
udev
];
meta = with lib; {
description = "Binary addon for raw joystick input";
platforms = platforms.all;
license = licenses.gpl2Only;
teams = [ teams.kodi ];
};
}