biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / video / kodi / addons / svtplay / default.nix
blob8c12ac47ca3fca9e785d2bb9b65c29b0a3de2627
1 { lib, buildKodiAddon, fetchFromGitHub }:
2 buildKodiAddon rec {
3   pname = "svtplay";
4   namespace = "plugin.video.svtplay";
5   version = "5.1.21";
7   src = fetchFromGitHub {
8     owner = "nilzen";
9     repo = "xbmc-" + pname;
10     rev = "v${version}";
11     sha256 = "sha256-CZtBUqFaKtMmKcpfBQp0Mb8sVvpCTkqcpfdYe41YSJs=";
12   };
14   meta = with lib; {
15     homepage = "https://forum.kodi.tv/showthread.php?tid=67110";
16     description = "Watch content from SVT Play";
17     longDescription = ''
18       With this addon you can stream content from SVT Play
19       (svtplay.se). The plugin fetches the video URL from the SVT
20       Play website and feeds it to the Kodi video player. HLS (m3u8)
21       is the preferred video format by the plugin.
22     '';
23     platforms = platforms.all;
24     license = licenses.gpl3Plus;
25     maintainers = teams.kodi.members;
27     broken = true; # no release for kodi 21
28   };