vdr: don't use wide with for meta

This commit is contained in:
Ihar Hrachyshka
2025-12-14 15:41:56 -05:00
parent 051d28ff16
commit 375419f94c
+6 -3
View File
@@ -26,9 +26,12 @@ symlinkJoin {
--prefix XINE_PLUGIN_PATH ":" ${lib.escapeShellArg (makeXinePluginPath requiredXinePlugins)}
'';
meta = with vdr.meta; {
inherit license homepage;
meta = {
inherit (vdr.meta) license homepage;
description =
description + " (with plugins: " + lib.concatStringsSep ", " (map (x: "" + x.name) plugins) + ")";
vdr.meta.description
+ " (with plugins: "
+ lib.concatStringsSep ", " (map (x: "" + x.name) plugins)
+ ")";
};
}