kodiPackages.mediathekview: init at 1.0.9

This commit is contained in:
Dominik Schrempf 2024-02-17 16:53:05 +01:00
parent 5863c27340
commit 2e13364360
No known key found for this signature in database
GPG Key ID: 1C0865FAE3B257BB
2 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,29 @@
{ lib, buildKodiAddon, fetchFromGitHub, addonUpdateScript, myconnpy }:
buildKodiAddon rec {
pname = "mediathekview";
namespace = "plugin.video.mediathekview";
version = "1.0.9";
src = fetchFromGitHub {
owner = pname;
repo = namespace;
rev = "release-${version}";
hash = "sha256-XYyocXFTiYO7Ar0TtxjpCAy2Ywtnwb8BTxdKxwDWm4Y=";
};
propagatedBuildInputs = [
myconnpy
];
passthru.updateScript = addonUpdateScript {
attrPath = "kodi.packages.mediathekview";
};
meta = with lib; {
homepage = "https://github.com/mediathekview/plugin.video.mediathekview";
description = "Access media libraries of German speaking broadcasting stations";
license = licenses.mit;
maintainers = teams.kodi.members;
};
}

View File

@ -83,6 +83,8 @@ let self = rec {
mediacccde = callPackage ../applications/video/kodi/addons/mediacccde { };
mediathekview = callPackage ../applications/video/kodi/addons/mediathekview { };
netflix = callPackage ../applications/video/kodi/addons/netflix { };
orftvthek = callPackage ../applications/video/kodi/addons/orftvthek { };