kodiPackages.somafm: init at 2.0.1

This commit is contained in:
Maximilian Güntner 2023-10-29 15:50:40 +01:00
parent b35585b4a2
commit 200c2340f0
No known key found for this signature in database
GPG key ID: 90856B23CE630D77
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,26 @@
{ lib, buildKodiAddon, fetchzip, addonUpdateScript }:
buildKodiAddon rec {
pname = "somafm";
namespace = "plugin.audio.somafm";
version = "2.0.1";
src = fetchzip {
url = "https://mirrors.kodi.tv/addons/nexus/plugin.audio.somafm/plugin.audio.somafm-${version}.zip";
sha256 = "sha256-auPLm7QFabU4tXJPjTl17KpE+lqWM2Edbd2HrXPRx40=";
};
passthru = {
pythonPath = "resources/lib";
updateScript = addonUpdateScript {
attrPath = "kodi.packages.somafm";
};
};
meta = with lib; {
homepage = "https://github.com/Soma-FM-Kodi-Add-On/plugin.audio.somafm";
description = "SomaFM addon for Kodi";
license = licenses.gpl3Plus;
maintainers = teams.kodi.members;
};
}

View file

@ -92,6 +92,8 @@ let self = rec {
steam-library = callPackage ../applications/video/kodi/addons/steam-library { };
somafm = callPackage ../applications/video/kodi/addons/somafm { };
pdfreader = callPackage ../applications/video/kodi/addons/pdfreader { };
pvr-hts = callPackage ../applications/video/kodi/addons/pvr-hts { };