vdr: don't use wide with for meta
This commit is contained in:
@@ -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)
|
||||
+ ")";
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user