From 375419f94cc8dc5df6f740d2fa00517a3d48f562 Mon Sep 17 00:00:00 2001 From: Ihar Hrachyshka Date: Sun, 14 Dec 2025 15:35:32 -0500 Subject: [PATCH] vdr: don't use wide `with` for meta --- pkgs/applications/video/vdr/wrapper.nix | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/video/vdr/wrapper.nix b/pkgs/applications/video/vdr/wrapper.nix index 9680d4ad3c2e..7c57fc5098f3 100644 --- a/pkgs/applications/video/vdr/wrapper.nix +++ b/pkgs/applications/video/vdr/wrapper.nix @@ -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) + + ")"; }; }