kodiPlugins.t0mm0-common: init at 0.0.1

This commit is contained in:
Edward Tjörnhammar 2016-01-13 14:27:04 +01:00
parent 32cd7228f6
commit cee61fd115
2 changed files with 22 additions and 1 deletions

View File

@ -202,6 +202,27 @@ in
propagatedBuildinputs = [ steam ];
};
t0mm0-common = mkKodiPlugin rec {
plugin = "t0mm0-common";
namespace = "script.module.t0mm0.common";
version = "0.0.1";
src = fetchFromGitHub {
name = plugin + "-" + version + ".tar.gz";
owner = "t0mm0";
repo = "xbmc-urlresolver";
rev = "ab16933a996a9e77b572953c45e70900c723d6e1";
sha256 = "1yd00md8iirizzaiqy6fv1n2snydcpqvp2f9irzfzxxi3i9asb93";
};
meta = with stdenv.lib; {
homepage = "https://github.com/t0mm0/xbmc-urlresolver/";
description = "t0mm0's common stuff";
maintainers = with maintainers; [ edwtjo ];
};
};
pvr-hts = (mkKodiPlugin rec {
plugin = "pvr-hts";
namespace = "pvr.hts";

View File

@ -13699,7 +13699,7 @@ let
++ optional (config.kodi.enableSVTPlay or false) svtplay
++ optional (config.kodi.enableSteamLauncher or false) steam-launcher
++ optional (config.kodi.enablePVRHTS or false) pvr-hts
++ optionals (config.kodi.enableSALTS or false) [salts urlresolver]
++ optionals (config.kodi.enableSALTS or false) [salts urlresolver t0mm0-common]
);
};