kodiPackages.somafm: init at 2.0.1
This commit is contained in:
parent
b35585b4a2
commit
200c2340f0
2 changed files with 28 additions and 0 deletions
26
pkgs/applications/video/kodi/addons/somafm/default.nix
Normal file
26
pkgs/applications/video/kodi/addons/somafm/default.nix
Normal 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;
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue