openxray: 2188-november-2023-rc1 -> 2921-january-2025-rc1 (#375925)
[NixPkgs.git] / pkgs / applications / video / kodi / addons / somafm / default.nix
blob88a0a205eb376c39ff85c2d3aa7c3660d5f02e31
2   lib,
3   rel,
4   buildKodiAddon,
5   fetchzip,
6   addonUpdateScript,
7 }:
9 buildKodiAddon rec {
10   pname = "somafm";
11   namespace = "plugin.audio.somafm";
12   version = "2.0.1";
14   src = fetchzip {
15     url = "https://mirrors.kodi.tv/addons/${lib.toLower rel}/plugin.audio.somafm/plugin.audio.somafm-${version}.zip";
16     sha256 = "sha256-auPLm7QFabU4tXJPjTl17KpE+lqWM2Edbd2HrXPRx40=";
17   };
19   passthru = {
20     pythonPath = "resources/lib";
21     updateScript = addonUpdateScript {
22       attrPath = "kodi.packages.somafm";
23     };
24   };
26   meta = with lib; {
27     homepage = "https://github.com/Soma-FM-Kodi-Add-On/plugin.audio.somafm";
28     description = "SomaFM addon for Kodi";
29     license = licenses.gpl3Plus;
30     maintainers = teams.kodi.members;
31   };