mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-08-02 14:57:31 +03:00
nix: do not build ZLS on linux aarch64, see comment
This commit is contained in:
@ -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.
|
||||
|
Reference in New Issue
Block a user