kodi-simplecache: init at 2.0.2

This commit is contained in:
Andrea Ghensi
2024-06-15 10:03:36 +02:00
parent da558f2fdc
commit 8a143faed6
2 changed files with 28 additions and 0 deletions
@@ -0,0 +1,26 @@
{ lib, rel, buildKodiAddon, fetchzip, addonUpdateScript }:
buildKodiAddon rec {
pname = "simplecache";
namespace = "script.module.simplecache";
version = "2.0.2";
src = fetchzip {
url = "https://mirrors.kodi.tv/addons/${lib.toLower rel}/${namespace}/${namespace}-${version}.zip";
sha256 = "sha256-xdOBIi99nspcDIKkjxcW1r/BqL8O9NxdDViTuvMtUmo=";
};
passthru = {
pythonPath = "lib";
updateScript = addonUpdateScript {
attrPath = "kodi.packages.simplecache";
};
};
meta = with lib; {
homepage = "https://github.com/kodi-community-addons/script.module.simplecache";
description = "A simple object cache for Kodi addons";
license = licenses.asl20;
maintainers = teams.kodi.members;
};
}
+2
View File
@@ -185,6 +185,8 @@ let
signals = callPackage ../applications/video/kodi/addons/signals { };
simplecache = callPackage ../applications/video/kodi/addons/simplecache { };
simplejson = callPackage ../applications/video/kodi/addons/simplejson { };
six = callPackage ../applications/video/kodi/addons/six { };