connman-gtk: fix FTBFS with GCC-14 (incompatible pointer types) (#376077)
[NixPkgs.git] / pkgs / applications / video / kodi / addons / upnext / default.nix
blob051cd4788f1e6e3d2f1b17ecb68ac0a1cefefe9b
2   lib,
3   rel,
4   buildKodiAddon,
5   fetchzip,
6   addonUpdateScript,
7 }:
9 buildKodiAddon rec {
10   pname = "upnext";
11   namespace = "service.upnext";
12   version = "1.1.9+matrix.1";
14   src = fetchzip {
15     url = "https://mirrors.kodi.tv/addons/${lib.toLower rel}/${namespace}/${namespace}-${version}.zip";
16     sha256 = "sha256-oNUk80MEzK6Qssn1KjT6psPTazISRoUif1IMo+BKJxo=";
17   };
19   passthru = {
20     pythonPath = "resources/lib";
21     updateScript = addonUpdateScript {
22       attrPath = "kodi.packages.upnext";
23     };
24   };
26   meta = with lib; {
27     homepage = "https://github.com/im85288/service.upnext";
28     description = "Up Next - Proposes to play the next episode automatically";
29     license = licenses.gpl2Only;
30     maintainers = teams.kodi.members;
31   };