From fef886e90e8cd5a722669efc571d7083650809e5 Mon Sep 17 00:00:00 2001 From: Atemu Date: Wed, 24 Jun 2026 01:19:04 +0200 Subject: [PATCH] openblas: disable checks on i686-linux (cherry picked from commit 89e0f58061bbae3fb73505d8fd7366bdeca08f28) --- pkgs/development/libraries/science/math/openblas/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/development/libraries/science/math/openblas/default.nix b/pkgs/development/libraries/science/math/openblas/default.nix index 4acddd306b5f..97b7596b937c 100644 --- a/pkgs/development/libraries/science/math/openblas/default.nix +++ b/pkgs/development/libraries/science/math/openblas/default.nix @@ -271,7 +271,9 @@ stdenv.mkDerivation (finalAttrs: { (lib.cmakeBool "USE_OPENMP" false) # openblas will refuse building with both USE_OPENMP=ON and USE_THREAD=OFF ]; - doCheck = true; + # FIXME: this broke some time between a0374025a863d007d98e3297f6aa46cc3141c2f0 and 34268251cf5547d39063f2c5ea9a196246f7f3a6 + # This just serves to unbreak stable + doCheck = stdenv.hostPlatform.system != "i686-linux"; postInstall = '' # Provide headers in /include directly for compat with some consumers like flint