From ba0929dbc744d2bab7855c5630b8473a37bf7481 Mon Sep 17 00:00:00 2001 From: kossLAN Date: Sun, 17 Nov 2024 17:35:21 -0500 Subject: [PATCH] mkNeovim: import description --- nix/mkNeovim.nix | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/nix/mkNeovim.nix b/nix/mkNeovim.nix index 43e0dc3..61c81e4 100644 --- a/nix/mkNeovim.nix +++ b/nix/mkNeovim.nix @@ -205,8 +205,11 @@ with lib; + lib.optionalString isCustomAppName '' mv $out/bin/nvim $out/bin/${lib.escapeShellArg appName} ''; - meta.mainProgram = - if isCustomAppName - then appName - else oa.meta.mainProgram; + meta = { + description = oa.description; + mainProgram = + if isCustomAppName + then appName + else oa.meta.mainProgram; + }; })