nixpkgs/pkgs/applications/video/kodi/addons/plugin-cache/default.nix
Fernando Rodrigues 05580f4b44
treewide: switch instances of lib.teams.*.members to the new meta.teams attribute
Follow-up to #394797.

Signed-off-by: Fernando Rodrigues <alpha@sigmasquadron.net>
2025-04-25 22:20:17 -03:00

32 lines
733 B
Nix

{
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;
teams = [ teams.kodi ];
};
}