kodiPlugins.hyper-launcher.{plugin,service}: init at 1.2.0

This commit is contained in:
Edward Tjörnhammar 2016-03-19 22:49:04 +01:00
parent 7d0b492731
commit c871c625c0
No known key found for this signature in database
GPG Key ID: 7B82CE4A866B6845
2 changed files with 30 additions and 0 deletions

@ -89,6 +89,34 @@ in
};
}).override { buildInputs = [ unzip ]; };
hyper-launcher = let
pname = "hyper-launcher";
version = "1.2.0";
src = fetchFromGitHub rec {
name = pname + "-" + version + ".tar.gz";
owner = "teeedubb";
repo = owner + "-xbmc-repo";
rev = "9bd170407436e736d2d709f8af9968238594669c";
sha256 = "019nqf7kixicnrzkg671x4yq723igjkhfl8hz5bifi9gx2qcy8hy";
};
meta = with stdenv.lib; {
homepage = http://forum.kodi.tv/showthread.php?tid=258159;
description = "A ROM launcher for Kodi that uses HyperSpin assets.";
maintainers = with maintainers; [ edwtjo ];
};
in {
service = mkKodiPlugin {
plugin = pname + "-service";
namespace = "service.hyper.launcher";
inherit version src meta;
};
plugin = mkKodiPlugin {
plugin = pname;
namespace = "plugin.hyper.launcher";
inherit version src meta;
};
};
salts = mkKodiPlugin rec {
plugin = "salts";

@ -14272,6 +14272,8 @@ let
([]
++ optional (config.kodi.enableAdvancedLauncher or false) advanced-launcher
++ optional (config.kodi.enableGenesis or false) genesis
++ optionals (config.kodi.enableHyperLauncher or false)
(with hyper-launcher; [ plugin service pdfreader ])
++ optionals (config.kodi.enableSALTS or false) [salts urlresolver t0mm0-common]
++ optional (config.kodi.enableSVTPlay or false) svtplay
++ optional (config.kodi.enableSteamLauncher or false) steam-launcher