nix: do not build ZLS on linux aarch64, see comment

This commit is contained in:
Mitchell Hashimoto
2024-04-11 05:30:06 -07:00
parent a198cc300e
commit c5496b89ee

View File

@ -88,7 +88,6 @@ in
scdoc scdoc
zig zig
zip zip
zls
# For web and wasm stuff # For web and wasm stuff
nodejs nodejs
@ -108,6 +107,11 @@ in
wabt wabt
wasmtime wasmtime
] ]
++ lib.optionals (!(stdenv.isLinux && stdenv.isAarch64)) [
# This is currently broken on aarch64 linux. Once this is
# fixed we can remove this conditional.
zls
]
++ lib.optionals stdenv.isLinux [ ++ lib.optionals stdenv.isLinux [
# My nix shell environment installs the non-interactive version # My nix shell environment installs the non-interactive version
# by default so we have to include this. # by default so we have to include this.