Merge pull request #319239 from sanzoghenzo/add-kodi-upnext

kodi-upnext: init at 1.1.9+matrix1
This commit is contained in:
Aaron Andersen 2024-06-16 06:46:01 -04:00 committed by GitHub
commit 019bc3bcd7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,26 @@
{ lib, rel, buildKodiAddon, fetchzip, addonUpdateScript }:
buildKodiAddon rec {
pname = "upnext";
namespace = "service.upnext";
version = "1.1.9+matrix.1";
src = fetchzip {
url = "https://mirrors.kodi.tv/addons/${lib.toLower rel}/${namespace}/${namespace}-${version}.zip";
sha256 = "sha256-oNUk80MEzK6Qssn1KjT6psPTazISRoUif1IMo+BKJxo=";
};
passthru = {
pythonPath = "resources/lib";
updateScript = addonUpdateScript {
attrPath = "kodi.packages.upnext";
};
};
meta = with lib; {
homepage = "https://github.com/im85288/service.upnext";
description = "Up Next - Proposes to play the next episode automatically";
license = licenses.gpl2Only;
maintainers = teams.kodi.members;
};
}

View File

@ -121,6 +121,8 @@ let
osmc-skin = callPackage ../applications/video/kodi/addons/osmc-skin { };
upnext = callPackage ../applications/video/kodi/addons/upnext { };
vfs-libarchive = callPackage ../applications/video/kodi/addons/vfs-libarchive { };
vfs-rar = callPackage ../applications/video/kodi/addons/vfs-rar { };