mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-27 11:08:53 +02:00
tests/none-ls: enable on darwin
Sandbox limit fixed.
This commit is contained in:
parent
708c601e0d
commit
563b0d9bdd
1 changed files with 16 additions and 2 deletions
|
@ -100,8 +100,7 @@
|
|||
in
|
||||
{
|
||||
plugins.none-ls = {
|
||||
# sandbox-exec: pattern serialization length 159032 exceeds maximum (65535)
|
||||
enable = !hostPlatform.isDarwin;
|
||||
enable = true;
|
||||
|
||||
sources =
|
||||
let
|
||||
|
@ -125,6 +124,21 @@
|
|||
++ lib.optionals hostPlatform.isDarwin [
|
||||
# TODO 2025-04-20 build failure
|
||||
"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
|
||||
# Enable every none-ls source that has an option
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue