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

tests/all-package-defaults: disable verible on aarch64-darwin (build failure)

https://github.com/NixOS/nixpkgs/pull/441058
This commit is contained in:
Gaetan Lepage 2025-09-08 00:40:32 +02:00 committed by Matt Sturgeon
parent 6394d43f25
commit 3fe2a1f253

View file

@ -56,6 +56,10 @@ let
++ lib.optionals (hostPlatform.isDarwin && hostPlatform.isAarch64) [
# As of 2025-07-25, zig-zlint is failing on aarch64-darwin
"zig-zlint"
# 2025-09-08, build failure
# https://github.com/NixOS/nixpkgs/pull/441058
"verible"
];
isEnabled = p: !(builtins.elem (lib.getName p) disabledTests);