From 7d83e8eb96041590b7c27d1b00f9c479845ec853 Mon Sep 17 00:00:00 2001 From: fzdslr-nw Date: Thu, 1 Jan 2026 16:18:10 +0000 Subject: [PATCH] vim-full: fix cross build with wayland support --- pkgs/applications/editors/vim/full.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/vim/full.nix b/pkgs/applications/editors/vim/full.nix index ad6697ea3443..752be0d2484c 100644 --- a/pkgs/applications/editors/vim/full.nix +++ b/pkgs/applications/editors/vim/full.nix @@ -168,7 +168,8 @@ stdenv.mkDerivation { ++ lib.optional wrapPythonDrv makeWrapper ++ lib.optional nlsSupport gettext ++ lib.optional perlSupport perl - ++ lib.optional (guiSupport == "gtk3") wrapGAppsHook3; + ++ lib.optional (guiSupport == "gtk3") wrapGAppsHook3 + ++ lib.optional waylandSupport wayland-scanner; buildInputs = [ ncurses @@ -188,7 +189,6 @@ stdenv.mkDerivation { ] ++ lib.optional (guiSupport == "gtk2") gtk2-x11 ++ lib.optional (guiSupport == "gtk3") gtk3-x11 - ++ lib.optional waylandSupport wayland-scanner ++ lib.optional luaSupport lua ++ lib.optional pythonSupport python3 ++ lib.optional tclSupport tcl