From 198e3a42e75f78b858ea3b2f1989e341e666215f Mon Sep 17 00:00:00 2001 From: kossLAN Date: Sun, 17 Nov 2024 17:40:35 -0500 Subject: [PATCH] mkNeovim: add some more meta properties --- nix/mkNeovim.nix | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/nix/mkNeovim.nix b/nix/mkNeovim.nix index fb91686..4b710b0 100644 --- a/nix/mkNeovim.nix +++ b/nix/mkNeovim.nix @@ -206,7 +206,17 @@ with lib; mv $out/bin/nvim $out/bin/${lib.escapeShellArg appName} ''; meta = { - description = "Neovim neovim-unwrapped"; + description = "Vim text editor fork focused on extensibility and agility"; + longDescription = '' + Neovim is a project that seeks to aggressively refactor Vim in order to: + - Simplify maintenance and encourage contributions + - Split the work between multiple developers + - Enable the implementation of new/modern user interfaces without any + modifications to the core source + - Improve extensibility with a new plugin architecture + ''; + license = with licenses; [asl20 vim]; + homepage = "https://www.neovim.io"; mainProgram = if isCustomAppName then appName