From 3fe2a1f253ab98283b8f1d3b735129ffae2e3f08 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Mon, 8 Sep 2025 00:40:32 +0200 Subject: [PATCH] tests/all-package-defaults: disable verible on aarch64-darwin (build failure) https://github.com/NixOS/nixpkgs/pull/441058 --- tests/all-package-defaults.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/all-package-defaults.nix b/tests/all-package-defaults.nix index 6db6824b..00919a4e 100644 --- a/tests/all-package-defaults.nix +++ b/tests/all-package-defaults.nix @@ -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);