Merge pull request #289562 from dschrempf/kodi-mediathekview

kodiPackages.mediathekview: init at 1.0.9
This commit is contained in:
Aaron Andersen 2024-02-24 08:30:58 -05:00 committed by GitHub
commit ef3dafa197
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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 { };