biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / video / kodi / addons / upnext / default.nix
blobdccfce4c3f0f6d261da7652894e2b3592df4a6e1
1 { lib, rel, buildKodiAddon, fetchzip, addonUpdateScript }:
3 buildKodiAddon rec {
4   pname = "upnext";
5   namespace = "service.upnext";
6   version = "1.1.9+matrix.1";
8   src = fetchzip {
9     url = "https://mirrors.kodi.tv/addons/${lib.toLower rel}/${namespace}/${namespace}-${version}.zip";
10     sha256 = "sha256-oNUk80MEzK6Qssn1KjT6psPTazISRoUif1IMo+BKJxo=";
11   };
13   passthru = {
14     pythonPath = "resources/lib";
15     updateScript = addonUpdateScript {
16       attrPath = "kodi.packages.upnext";
17     };
18   };
20   meta = with lib; {
21     homepage = "https://github.com/im85288/service.upnext";
22     description = "Up Next - Proposes to play the next episode automatically";
23     license = licenses.gpl2Only;
24     maintainers = teams.kodi.members;
25   };