From ada9f560c3e4f4a4b9d69fee10b91ea497443f0b Mon Sep 17 00:00:00 2001 From: Matt Sturgeon Date: Wed, 18 Jun 2025 00:27:07 +0100 Subject: [PATCH] tests/lsp: disable vectorcode_server as vectorcode is broken See https://github.com/NixOS/nixpkgs/issues/415770 and https://github.com/NixOS/nixpkgs/pull/416834#discussion_r2153315104 and https://github.com/nix-community/nixvim/pull/3486#issuecomment-2982081727 --- tests/lsp-servers.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/tests/lsp-servers.nix b/tests/lsp-servers.nix index ae238d4c..53456f2b 100644 --- a/tests/lsp-servers.nix +++ b/tests/lsp-servers.nix @@ -45,14 +45,16 @@ let "ruff_lsp" "bufls" "typst_lsp" + + # `vectorcode` fails its python dependency check, as the required dependency is dropped. + # See https://github.com/NixOS/nixpkgs/issues/415770 + # and https://github.com/NixOS/nixpkgs/pull/416834#discussion_r2153315104 + "vectorcode_server" ] ++ lib.optionals (hostPlatform.isLinux && hostPlatform.isAarch64) [ # TODO: 2025-04-20 build failure (swift-corelibs-xctest) "sourcekit" - # pkgs.vectorcode is not available on this platform - "vectorcode_server" - # TODO: 2024-10-05 build failure "fstar"