tests: re-enable lua-language-servers tests on all platforms

This reverts commit 432af78ffd.
This commit is contained in:
Gaetan Lepage 2024-11-17 11:28:46 +01:00 committed by nix-infra-bot
parent 1ee4915f65
commit 909b4f41d7
2 changed files with 1 additions and 7 deletions

View file

@ -50,10 +50,6 @@ let
# TODO: 2024-10-05 build failure # TODO: 2024-10-05 build failure
"fstar" "fstar"
] ]
++ lib.optionals (pkgs.stdenv.hostPlatform.system == "aarch64-darwin") [
# TODO: 2024-11-10 fixed in https://github.com/NixOS/nixpkgs/pull/355032
"lua-language-server"
]
++ lib.optionals (pkgs.stdenv.hostPlatform.system == "x86_64-darwin") [ ++ lib.optionals (pkgs.stdenv.hostPlatform.system == "x86_64-darwin") [
# Binary package not available for this architecture # Binary package not available for this architecture
"starpls" "starpls"

View file

@ -1,12 +1,10 @@
{ pkgs, ... }:
{ {
defaults = { defaults = {
plugins.lsp = { plugins.lsp = {
enable = true; enable = true;
servers.lua_ls = { servers.lua_ls = {
# TODO: 2024-11-10 fixed in https://github.com/NixOS/nixpkgs/pull/355032 enable = true;
enable = pkgs.stdenv.isLinux || pkgs.stdenv.hostPlatform.isx86_64;
settings = { settings = {
addonManager = { addonManager = {