Merge pull request #320011 from sanzoghenzo/add-kodi-plugin-cache

kodi-plugin-cache: init at 3.0.0
This commit is contained in:
Aaron Andersen
2024-06-16 06:52:32 -04:00
committed by GitHub
2 changed files with 28 additions and 0 deletions
@@ -0,0 +1,26 @@
{ lib, rel, buildKodiAddon, fetchzip, addonUpdateScript }:
buildKodiAddon rec {
pname = "plugin-cache";
namespace = "script.common.plugin.cache";
version = "3.0.0";
src = fetchzip {
url = "https://mirrors.kodi.tv/addons/${lib.toLower rel}/${namespace}/${namespace}-${version}.zip";
sha256 = "sha256-5QcMNmWOEw2C26OXlvAvxqDxTpjIMBhwmaIFwVgHuIU=";
};
passthru = {
pythonPath = "resources/lib";
updateScript = addonUpdateScript {
attrPath = "kodi.packages.plugin-cache";
};
};
meta = with lib; {
homepage = "https://github.com/anxdpanic/script.common.plugin.cache";
description = "Common plugin cache";
license = licenses.gpl3Only;
maintainers = teams.kodi.members;
};
}
+2
View File
@@ -179,6 +179,8 @@ let
myconnpy = callPackage ../applications/video/kodi/addons/myconnpy { };
plugin-cache = callPackage ../applications/video/kodi/addons/plugin-cache { };
requests = callPackage ../applications/video/kodi/addons/requests { };
requests-cache = callPackage ../applications/video/kodi/addons/requests-cache { };