1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-08 19:46:06 +01:00

ci/all-packages-defaults: disable broken packages on x86_64-darwin

Co-authored-by: Gaetan Lepage <gaetan@glepage.com>
This commit is contained in:
Matt Sturgeon 2025-09-07 13:15:05 +01:00 committed by Gaétan Lepage
parent 225e8c0198
commit 3813f183bc

View file

@ -32,6 +32,27 @@ let
"muon"
"rubyfmt"
]
++ lib.optionals (hostPlatform.isDarwin && hostPlatform.isx86_64) [
# As of 2024-07-31, dmd is broken on x86_64-darwin
# https://github.com/NixOS/nixpkgs/pull/331373
"dmd"
# Marked as broken
"mesonlsp"
# No hash for system
"verible"
# 2025-06-24 build failure
"gleam"
# 2024-01-04 build failure
"texlive-combined-medium"
"texlive"
# python3Packages.sentence-transformers hangs forever
"vectorcode"
]
++ lib.optionals (hostPlatform.isDarwin && hostPlatform.isAarch64) [
# As of 2025-07-25, zig-zlint is failing on aarch64-darwin
"zig-zlint"