mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-27 19:18:57 +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
|
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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue