kodiPackages.svtplay: drop

Has been marked broken since April 2024. Dropping per RFC 180.
This commit is contained in:
Michael Daniels
2025-10-12 21:53:02 -04:00
parent 815f6e9e3e
commit dd4bf1f1a6
2 changed files with 2 additions and 35 deletions

View File

@@ -1,33 +0,0 @@
{
lib,
buildKodiAddon,
fetchFromGitHub,
}:
buildKodiAddon rec {
pname = "svtplay";
namespace = "plugin.video.svtplay";
version = "5.1.21";
src = fetchFromGitHub {
owner = "nilzen";
repo = "xbmc-" + pname;
rev = "v${version}";
sha256 = "sha256-CZtBUqFaKtMmKcpfBQp0Mb8sVvpCTkqcpfdYe41YSJs=";
};
meta = with lib; {
homepage = "https://forum.kodi.tv/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 Kodi video player. HLS (m3u8)
is the preferred video format by the plugin.
'';
platforms = platforms.all;
license = licenses.gpl3Plus;
teams = [ teams.kodi ];
broken = true; # no release for kodi 21
};
}

View File

@@ -143,8 +143,6 @@ let
skyvideoitalia = callPackage ../applications/video/kodi/addons/skyvideoitalia { };
svtplay = callPackage ../applications/video/kodi/addons/svtplay { };
steam-controller = callPackage ../applications/video/kodi/addons/steam-controller { };
steam-launcher = callPackage ../applications/video/kodi/addons/steam-launcher { };
@@ -272,4 +270,6 @@ self
throw
"kodi.packages.controllers has been replaced with kodi.packages.controller-topology-project - a package which contains a large number of controller profiles."
{ };
svtplay = throw "kodiPackages.svtplay has been removed because it has been marked as broken since at least November 2024."; # Added 2025-10-12
}