tests/none-ls: enable on darwin

Sandbox limit fixed.
This commit is contained in:
Austin Horstman 2025-06-23 21:36:11 -05:00
parent 708c601e0d
commit 563b0d9bdd

View file

@ -100,8 +100,7 @@
in in
{ {
plugins.none-ls = { plugins.none-ls = {
# sandbox-exec: pattern serialization length 159032 exceeds maximum (65535) enable = true;
enable = !hostPlatform.isDarwin;
sources = sources =
let let
@ -125,6 +124,21 @@
++ lib.optionals hostPlatform.isDarwin [ ++ lib.optionals hostPlatform.isDarwin [
# TODO 2025-04-20 build failure # TODO 2025-04-20 build failure
"ansiblelint" "ansiblelint"
# TODO 2025-06-24 build failure
"elm_format"
# TODO 2025-06-24 marked broken / unsupported platform
"clazy"
"haml_lint"
"racket_fixw"
"raco_fmt"
"rubyfmt"
]
++ lib.optionals (hostPlatform.isDarwin && hostPlatform.isx86_64) [
# TODO: 2025-06-24 build failure
"gleam_format"
"ptop"
# NOTE: No hash for x86 darwin
"verible_verilog_format"
]; ];
in in
# Enable every none-ls source that has an option # Enable every none-ls source that has an option