2017-06-05 16:07:30 +01:00
|
|
|
{ stdenv, lib, callPackage, fetchurl, fetchFromGitHub, unzip
|
|
|
|
, steam, libusb, pcre-cpp, jsoncpp, libhdhomerun }:
|
2015-01-19 21:14:36 +00:00
|
|
|
|
2017-06-05 16:07:30 +01:00
|
|
|
with (callPackage ./commons.nix {});
|
2015-01-19 21:14:36 +00:00
|
|
|
|
2017-06-05 16:07:30 +01:00
|
|
|
rec {
|
2015-01-19 21:14:36 +00:00
|
|
|
|
|
|
|
advanced-launcher = mkKodiPlugin rec {
|
|
|
|
|
|
|
|
plugin = "advanced-launcher";
|
|
|
|
namespace = "plugin.program.advanced.launcher";
|
|
|
|
version = "2.5.8";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2015-12-01 09:01:49 +00:00
|
|
|
owner = "edwtjo";
|
|
|
|
repo = plugin;
|
|
|
|
rev = version;
|
|
|
|
sha256 = "142vvgs37asq5m54xqhjzqvgmb0xlirvm0kz6lxaqynp0vvgrkx2";
|
2015-01-19 21:14:36 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = "http://forum.kodi.tv/showthread.php?tid=85724";
|
|
|
|
description = "A program launcher for Kodi";
|
|
|
|
longDescription = ''
|
|
|
|
Advanced Launcher allows you to start any Linux, Windows and
|
|
|
|
OS X external applications (with command line support or not)
|
|
|
|
directly from the Kodi GUI. Advanced Launcher also give you
|
|
|
|
the possibility to edit, download (from Internet resources)
|
|
|
|
and manage all the meta-data (informations and images) related
|
|
|
|
to these applications.
|
|
|
|
'';
|
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = with maintainers; [ edwtjo ];
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2016-11-06 11:00:28 +00:00
|
|
|
controllers = let
|
|
|
|
pname = "game-controller";
|
|
|
|
version = "1.0.3";
|
2015-01-19 21:14:36 +00:00
|
|
|
|
2016-11-06 11:00:28 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "kodi-game";
|
|
|
|
repo = "kodi-game-controllers";
|
|
|
|
rev = "01acb5b6e8b85392b3cb298b034aadb1b24ccf18";
|
|
|
|
sha256 = "0sbc0w0fwbp7rbmbgb6a1kglhnn5g85hijcbbvf5x6jdq9v3f1qb";
|
|
|
|
};
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Add support for different gaming controllers.";
|
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = with maintainers; [ edwtjo ];
|
|
|
|
};
|
|
|
|
|
|
|
|
mkController = controller: {
|
|
|
|
"${controller}" = mkKodiPlugin rec {
|
|
|
|
plugin = pname + "-" + controller;
|
|
|
|
namespace = "game.controller." + controller;
|
|
|
|
sourceDir = "addons/" + namespace;
|
|
|
|
inherit version src meta;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
in (mkController "default")
|
|
|
|
// (mkController "dreamcast")
|
|
|
|
// (mkController "gba")
|
|
|
|
// (mkController "genesis")
|
|
|
|
// (mkController "mouse")
|
|
|
|
// (mkController "n64")
|
|
|
|
// (mkController "nes")
|
|
|
|
// (mkController "ps")
|
|
|
|
// (mkController "snes");
|
|
|
|
|
|
|
|
exodus = (mkKodiPlugin rec {
|
|
|
|
|
|
|
|
plugin = "exodus";
|
|
|
|
namespace = "plugin.video.exodus";
|
2017-05-25 12:57:34 +01:00
|
|
|
version = "3.1.13";
|
2015-01-19 21:14:36 +00:00
|
|
|
|
2016-02-21 15:15:13 +00:00
|
|
|
src = fetchurl {
|
2016-11-06 11:00:28 +00:00
|
|
|
url = "https://offshoregit.com/${plugin}/${namespace}/${namespace}-${version}.zip";
|
2017-05-25 12:57:34 +01:00
|
|
|
sha256 = "1zyay7cinljxmpzngzlrr4pnk2a7z9wwfdcsk6a4p416iglyggdj";
|
2015-01-19 21:14:36 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2016-11-06 11:00:28 +00:00
|
|
|
description = "A streaming plugin for Kodi";
|
2015-01-19 21:14:36 +00:00
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = with maintainers; [ edwtjo ];
|
|
|
|
};
|
2016-11-06 11:00:28 +00:00
|
|
|
|
2016-02-21 15:15:13 +00:00
|
|
|
}).override { buildInputs = [ unzip ]; };
|
2015-01-19 21:14:36 +00:00
|
|
|
|
2016-03-19 21:49:04 +00:00
|
|
|
hyper-launcher = let
|
|
|
|
pname = "hyper-launcher";
|
2016-11-06 11:00:28 +00:00
|
|
|
version = "1.5.2";
|
2016-03-19 21:49:04 +00:00
|
|
|
src = fetchFromGitHub rec {
|
|
|
|
name = pname + "-" + version + ".tar.gz";
|
|
|
|
owner = "teeedubb";
|
|
|
|
repo = owner + "-xbmc-repo";
|
2016-11-06 11:00:28 +00:00
|
|
|
rev = "f958ba93fe85b9c9025b1745d89c2db2e7dd9bf6";
|
|
|
|
sha256 = "1dvff24fbas25k5kvca4ssks9l1g5rfa3hl8lqxczkaqi3pp41j5";
|
2016-03-19 21:49:04 +00:00
|
|
|
};
|
|
|
|
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";
|
2016-11-06 11:00:28 +00:00
|
|
|
version = "1.2.1";
|
2016-03-19 21:49:04 +00:00
|
|
|
namespace = "service.hyper.launcher";
|
2016-11-06 11:00:28 +00:00
|
|
|
inherit src meta;
|
2016-03-19 21:49:04 +00:00
|
|
|
};
|
|
|
|
plugin = mkKodiPlugin {
|
|
|
|
plugin = pname;
|
|
|
|
namespace = "plugin.hyper.launcher";
|
|
|
|
inherit version src meta;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2015-01-19 21:14:36 +00:00
|
|
|
svtplay = mkKodiPlugin rec {
|
|
|
|
|
|
|
|
plugin = "svtplay";
|
|
|
|
namespace = "plugin.video.svtplay";
|
2017-05-25 14:33:08 +01:00
|
|
|
version = "4.0.48";
|
2015-01-19 21:14:36 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2016-01-12 20:38:58 +00:00
|
|
|
name = plugin + "-" + version + ".tar.gz";
|
2015-01-19 21:14:36 +00:00
|
|
|
owner = "nilzen";
|
|
|
|
repo = "xbmc-" + plugin;
|
2017-05-25 14:33:08 +01:00
|
|
|
rev = "dc18ad002cd69257611d0032fba91f57bb199165";
|
|
|
|
sha256 = "0klk1jpjc243ak306k94mag4b4s17w68v69yb8lzzydszqkaqa7x";
|
2015-01-19 21:14:36 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2015-03-11 18:52:35 +00:00
|
|
|
homepage = "http://forum.kodi.tv/showthread.php?tid=67110";
|
2015-01-19 21:14:36 +00:00
|
|
|
description = "Watch content from SVT Play";
|
|
|
|
longDescription = ''
|
|
|
|
With this addon you can stream content from SVT Play
|
|
|
|
(svtplay.se). The plugin fetches the video URL from the SVT
|
|
|
|
Play website and feeds it to the Kodi video player. HLS (m3u8)
|
|
|
|
is the preferred video format by the plugin.
|
|
|
|
'';
|
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = with maintainers; [ edwtjo ];
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2015-11-22 09:09:40 +00:00
|
|
|
steam-launcher = (mkKodiPlugin rec {
|
2016-01-13 13:27:04 +00:00
|
|
|
|
2015-11-22 09:09:40 +00:00
|
|
|
plugin = "steam-launcher";
|
|
|
|
namespace = "script.steam.launcher";
|
2016-03-19 21:49:14 +00:00
|
|
|
version = "3.1.4";
|
2015-11-22 09:09:40 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub rec {
|
|
|
|
owner = "teeedubb";
|
|
|
|
repo = owner + "-xbmc-repo";
|
2016-03-19 21:49:14 +00:00
|
|
|
rev = "db67704c3e16bdcdd3bdfe2926c609f1f6bdc4fb";
|
|
|
|
sha256 = "001a7zs3a4jfzj8ylxv2klc33mipmqsd5aqax7q81fbgwdlndvbm";
|
2015-11-22 09:09:40 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = "http://forum.kodi.tv/showthread.php?tid=157499";
|
|
|
|
description = "Launch Steam in Big Picture Mode from Kodi";
|
|
|
|
longDescription = ''
|
|
|
|
This add-on will close/minimise Kodi, launch Steam in Big
|
|
|
|
Picture Mode and when Steam BPM is exited (either by quitting
|
|
|
|
Steam or returning to the desktop) Kodi will
|
|
|
|
restart/maximise. Running pre/post Steam scripts can be
|
|
|
|
configured via the addon.
|
|
|
|
'';
|
|
|
|
maintainers = with maintainers; [ edwtjo ];
|
|
|
|
};
|
|
|
|
}).override {
|
|
|
|
propagatedBuildinputs = [ steam ];
|
|
|
|
};
|
|
|
|
|
2016-03-19 21:48:58 +00:00
|
|
|
pdfreader = mkKodiPlugin rec {
|
|
|
|
plugin = "pdfreader";
|
|
|
|
namespace = "plugin.image.pdf";
|
|
|
|
version = "1.0.2";
|
|
|
|
|
|
|
|
src = fetchFromGitHub rec {
|
|
|
|
name = plugin + "-" + version + ".tar.gz";
|
|
|
|
owner = "teeedubb";
|
|
|
|
repo = owner + "-xbmc-repo";
|
|
|
|
rev = "0a405b95208ced8a1365ad3193eade8d1c2117ce";
|
|
|
|
sha256 = "1iv7d030z3xvlflvp4p5v3riqnwg9g0yvzxszy63v1a6x5kpjkqa";
|
|
|
|
};
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://forum.kodi.tv/showthread.php?tid=187421;
|
|
|
|
descritpion = "A comic book reader";
|
|
|
|
maintainers = with maintainers; [ edwtjo ];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2017-06-05 16:07:30 +01:00
|
|
|
pvr-hts = mkKodiABIPlugin rec {
|
|
|
|
|
2015-11-30 22:00:09 +00:00
|
|
|
plugin = "pvr-hts";
|
|
|
|
namespace = "pvr.hts";
|
2017-02-03 22:11:50 +00:00
|
|
|
version = "3.4.16";
|
2015-11-30 22:00:09 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "kodi-pvr";
|
|
|
|
repo = "pvr.hts";
|
2017-02-03 22:11:50 +00:00
|
|
|
rev = "b39e4e9870d68841279cbc7d7214f3ad9b27f330";
|
|
|
|
sha256 = "0pmlgqr4kd0gvckz77mj6v42kcx6lb23anm8jnf2fbn877snnijx";
|
2015-11-30 22:00:09 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://github.com/kodi-pvr/pvr.hts;
|
|
|
|
description = "Kodi's Tvheadend HTSP client addon";
|
|
|
|
platforms = platforms.all;
|
2017-01-20 11:23:57 +00:00
|
|
|
maintainers = with maintainers; [ cpages ];
|
2015-11-30 22:00:09 +00:00
|
|
|
};
|
2017-06-05 16:07:30 +01:00
|
|
|
|
2015-11-30 22:00:09 +00:00
|
|
|
};
|
2017-04-30 21:28:50 +01:00
|
|
|
|
2017-06-05 16:07:30 +01:00
|
|
|
pvr-hdhomerun = mkKodiABIPlugin rec {
|
|
|
|
|
2017-04-30 21:28:50 +01:00
|
|
|
plugin = "pvr-hdhomerun";
|
|
|
|
namespace = "pvr.hdhomerun";
|
|
|
|
version = "2.4.7";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "kodi-pvr";
|
|
|
|
repo = "pvr.hdhomerun";
|
|
|
|
rev = "60d89d16dd953d38947e8a6da2f8bb84a0f764ef";
|
|
|
|
sha256 = "0dvdv0vk2q12nj0i5h51iaypy3i7jfsxjyxwwpxfy82y8260ragy";
|
|
|
|
};
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://github.com/kodi-pvr/pvr.hdhomerun;
|
|
|
|
description = "Kodi's HDHomeRun PVR client addon";
|
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = with maintainers; [ titanous ];
|
|
|
|
};
|
2017-06-05 16:07:30 +01:00
|
|
|
|
|
|
|
extraBuildInputs = [ jsoncpp libhdhomerun ];
|
|
|
|
|
2017-04-30 21:28:50 +01:00
|
|
|
};
|
2015-10-26 15:57:24 +00:00
|
|
|
}
|