Unverified Commit 9c88efe1 authored by Aaron Andersen's avatar Aaron Andersen Committed by GitHub
Browse files

kodiPackages.svtplay: drop (#451525)

parents c3620656 dd4bf1f1
Loading
Loading
Loading
Loading
+0 −33
Original line number Diff line number Diff line
{
  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
  };
}
+2 −2
Original line number Diff line number Diff line
@@ -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
}