kodiPlugins.joystick: init at 1.3.6

This commit is contained in:
Edward Tjörnhammar 2017-06-05 17:12:57 +02:00
parent 4f410bfc8d
commit fe0b858113
No known key found for this signature in database
GPG Key ID: 7B82CE4A866B6845
2 changed files with 23 additions and 0 deletions

View File

@ -147,6 +147,28 @@ rec {
}; };
}; };
joystick = mkKodiABIPlugin rec {
namespace = "peripheral.joystick";
version = "1.3.6";
plugin = namespace;
src = fetchFromGitHub {
owner = "kodi-game";
repo = namespace;
rev = "5b480ccdd4a87f2ca3283a7b8d1bd69a114af0db";
sha256 = "1zf5zwghx96bqk7bx53qra27lfbgfdi1dsk4s3hwixr8ii72cqpp";
};
meta = with stdenv.lib; {
description = "Binary addon for raw joystick input.";
platforms = platforms.all;
maintainers = with maintainers; [ edwtjo ];
};
extraBuildInputs = [ libusb pcre-cpp ];
};
svtplay = mkKodiPlugin rec { svtplay = mkKodiPlugin rec {
plugin = "svtplay"; plugin = "svtplay";

View File

@ -16535,6 +16535,7 @@ with pkgs;
++ optional (config.kodi.enableExodus or false) exodus ++ optional (config.kodi.enableExodus or false) exodus
++ optionals (config.kodi.enableHyperLauncher or false) ++ optionals (config.kodi.enableHyperLauncher or false)
(with hyper-launcher; [ plugin service pdfreader ]) (with hyper-launcher; [ plugin service pdfreader ])
++ optional (config.kodi.enableJoystick or false) joystick
++ optional (config.kodi.enableSVTPlay or false) svtplay ++ optional (config.kodi.enableSVTPlay or false) svtplay
++ 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