kodiPlugins.steam-controller: init at 0.9.0
This commit is contained in:
parent
fe0b858113
commit
677f194a10
|
@ -198,6 +198,28 @@ rec {
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
steam-controller = mkKodiABIPlugin rec {
|
||||||
|
namespace = "peripheral.steamcontroller";
|
||||||
|
version = "0.9.0";
|
||||||
|
plugin = namespace;
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "kodi-game";
|
||||||
|
repo = namespace;
|
||||||
|
rev = "76f640fad4f68118f4fab6c4c3338d13daca7074";
|
||||||
|
sha256 = "0yqlfdiiymb8z6flyhpval8w3kdc9qv3mli3jg1xn5ac485nxsxh";
|
||||||
|
};
|
||||||
|
|
||||||
|
extraBuildInputs = [ libusb ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Binary addon for steam controller.";
|
||||||
|
platforms = platforms.all;
|
||||||
|
maintainers = with maintainers; [ edwtjo ];
|
||||||
|
};
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
steam-launcher = (mkKodiPlugin rec {
|
steam-launcher = (mkKodiPlugin rec {
|
||||||
|
|
||||||
plugin = "steam-launcher";
|
plugin = "steam-launcher";
|
||||||
|
|
|
@ -16537,6 +16537,7 @@ with pkgs;
|
||||||
(with hyper-launcher; [ plugin service pdfreader ])
|
(with hyper-launcher; [ plugin service pdfreader ])
|
||||||
++ optional (config.kodi.enableJoystick or false) joystick
|
++ optional (config.kodi.enableJoystick or false) joystick
|
||||||
++ optional (config.kodi.enableSVTPlay or false) svtplay
|
++ optional (config.kodi.enableSVTPlay or false) svtplay
|
||||||
|
++ optional (config.kodi.enableSteamController or false) steam-controller
|
||||||
++ optional (config.kodi.enableSteamLauncher or false) steam-launcher
|
++ optional (config.kodi.enableSteamLauncher or false) steam-launcher
|
||||||
++ optional (config.kodi.enablePVRHTS or false) pvr-hts
|
++ optional (config.kodi.enablePVRHTS or false) pvr-hts
|
||||||
++ optional (config.kodi.enablePVRHDHomeRun or false) pvr-hdhomerun
|
++ optional (config.kodi.enablePVRHDHomeRun or false) pvr-hdhomerun
|
||||||
|
|
Loading…
Reference in New Issue