tests/lsp-servers: disable servers relying on EOL dotnet-core-combined

This commit is contained in:
Gaetan Lepage 2024-11-30 12:07:44 +01:00
parent 41657913df
commit c39ecbb055
2 changed files with 10 additions and 1 deletions

View file

@ -42,6 +42,12 @@ let
# See https://github.com/neovim/nvim-lspconfig/blob/master/lua/lspconfig.lua # See https://github.com/neovim/nvim-lspconfig/blob/master/lua/lspconfig.lua
"ruff_lsp" "ruff_lsp"
"bufls" "bufls"
# Package dotnet-core-combined is marked as insecure, refusing to evaluate.
# Dotnet SDK 6.0.428 is EOL, please use 8.0 (LTS) or 9.0 (Current)
# https://github.com/NixOS/nixpkgs/pull/358533
"dafny"
"fsautocomplete"
"omnisharp"
] ]
++ lib.optionals pkgs.stdenv.isDarwin [ ++ lib.optionals pkgs.stdenv.isDarwin [
"fsautocomplete" "fsautocomplete"

View file

@ -4,7 +4,10 @@
enable = true; enable = true;
servers.omnisharp = { servers.omnisharp = {
enable = true; # Package dotnet-core-combined is marked as insecure, refusing to evaluate.
# Dotnet SDK 6.0.428 is EOL, please use 8.0 (LTS) or 9.0 (Current)
# https://github.com/NixOS/nixpkgs/pull/358533
enable = false;
settings = { settings = {
enableEditorConfigSupport = true; enableEditorConfigSupport = true;