nix: do not build ZLS on linux aarch64, see comment
parent
a198cc300e
commit
c5496b89ee
|
|
@ -88,7 +88,6 @@ in
|
|||
scdoc
|
||||
zig
|
||||
zip
|
||||
zls
|
||||
|
||||
# For web and wasm stuff
|
||||
nodejs
|
||||
|
|
@ -108,6 +107,11 @@ in
|
|||
wabt
|
||||
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 [
|
||||
# My nix shell environment installs the non-interactive version
|
||||
# by default so we have to include this.
|
||||
|
|
|
|||
Loading…
Reference in New Issue