Merge pull request #264179 from mguentner/add_kodi_somafm

kodiPackages.somafm: init at 2.0.1
This commit is contained in:
Aaron Andersen 2023-10-29 11:27:55 -04:00 committed by GitHub
commit 602f09d882
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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

@ -94,6 +94,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 { };