From 6b83dc8ff8e9c23039f045567038e13e19699211 Mon Sep 17 00:00:00 2001 From: Cynthia Fox Date: Tue, 12 Dec 2023 12:45:37 -0500 Subject: [PATCH] neovim-qt: Add `meta.mainProgram` Add a `meta.mainProgram` attribute to allow use of `lib.getExe` properly with this program. --- pkgs/applications/editors/neovim/neovim-qt.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/applications/editors/neovim/neovim-qt.nix b/pkgs/applications/editors/neovim/neovim-qt.nix index a8483f0db348..75067585653b 100644 --- a/pkgs/applications/editors/neovim/neovim-qt.nix +++ b/pkgs/applications/editors/neovim/neovim-qt.nix @@ -37,6 +37,7 @@ mkDerivation rec { description = "Neovim client library and GUI, in Qt5"; homepage = "https://github.com/equalsraf/neovim-qt"; license = licenses.isc; + mainProgram = "nvim-qt"; maintainers = with maintainers; [ peterhoeg ]; inherit (neovim.meta) platforms; };