From 37a83771e63e9254131068daed6daeb7aeb9ea90 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edward=20Tj=C3=B6rnhammar?= Date: Thu, 2 Oct 2014 20:09:18 +0200 Subject: [PATCH] xmbcPlugins: svtplay added --- pkgs/applications/video/xbmc/plugins.nix | 28 ++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/pkgs/applications/video/xbmc/plugins.nix b/pkgs/applications/video/xbmc/plugins.nix index 336666f1b92..d34fba9ade7 100644 --- a/pkgs/applications/video/xbmc/plugins.nix +++ b/pkgs/applications/video/xbmc/plugins.nix @@ -53,4 +53,32 @@ in }; + svtplay = mkXBMCPlugin rec { + + plugin = "svtplay"; + namespace = "plugin.video.svtplay"; + version = "4.0.6"; + + src = fetchFromGitHub { + owner = "nilzen"; + repo = "xbmc-" + plugin; + rev = "4f27254edbd6dc48350152832833c5b164ca58de"; + sha256 = "11r8vljpx9fxwdx20cvkb5szlaypfrn6c235jwcg61s4hmjy4kl8"; + }; + + meta = with stdenv.lib; { + homepage = "http://forum.xbmc.org/showthread.php?tid=67110"; + 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 XBMC video player. HLS (m3u8) + is the preferred video format by the plugin. + ''; + platforms = platforms.all; + maintainers = with maintainers; [ edwtjo ]; + }; + + }; + } \ No newline at end of file