From 3997337eed9d7c3dce9d21297a3df9d73c4f7e9a Mon Sep 17 00:00:00 2001 From: Yureka Date: Tue, 14 Apr 2026 15:09:57 +0200 Subject: [PATCH 1/2] openblas: fully revert commit causing miscompilations --- .../libraries/science/math/openblas/default.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/development/libraries/science/math/openblas/default.nix b/pkgs/development/libraries/science/math/openblas/default.nix index a645c4a068e0..799e4927f6c6 100644 --- a/pkgs/development/libraries/science/math/openblas/default.nix +++ b/pkgs/development/libraries/science/math/openblas/default.nix @@ -197,11 +197,12 @@ stdenv.mkDerivation (finalAttrs: { }) ] ++ lib.optionals stdenv.hostPlatform.isAarch64 [ - # Backport https://github.com/OpenMathLib/OpenBLAS/pull/5710 - # Work around miscompilation of the ARM64 non-SVE DDOT kernel + # This commit led to miscompilation of certain ASIMD extensions code paths. + # There was an attempted fix in upstream but this still leaves some scipy tests failing. (fetchpatch { - url = "https://github.com/OpenMathLib/OpenBLAS/commit/e3ce4623c299068bbd47c35ee87aab334bac73b1.patch"; - hash = "sha256-j0zIJjNiAdIVPgdxB+pXiOrOtedDu6Yq+dgaJ/wCquk="; + url = "https://github.com/OpenMathLib/OpenBLAS/commit/3f6e928d34aca977bd5d4191e6d2c2338a342.patch"; + revert = true; + hash = "sha256-EccgzxgyfAjVbV+HPemGHmzkRe0kpixu3eS3BZWr0g4="; }) ]; From 6ad6f499ddc307fc9f3d1b7020a6a993bf637327 Mon Sep 17 00:00:00 2001 From: Weijia Wang <9713184+wegank@users.noreply.github.com> Date: Tue, 14 Apr 2026 15:34:35 +0200 Subject: [PATCH 2/2] qt6.qtwebengine: drop obsolete patch --- .../libraries/qt-6/modules/qtwebengine/default.nix | 9 --------- 1 file changed, 9 deletions(-) diff --git a/pkgs/development/libraries/qt-6/modules/qtwebengine/default.nix b/pkgs/development/libraries/qt-6/modules/qtwebengine/default.nix index c76700cbd193..8facbea4362b 100644 --- a/pkgs/development/libraries/qt-6/modules/qtwebengine/default.nix +++ b/pkgs/development/libraries/qt-6/modules/qtwebengine/default.nix @@ -117,15 +117,6 @@ qtModule { # Reproducibility QTBUG-136068 ./gn-object-sorted.patch - ] - ++ lib.optionals stdenv.cc.isClang [ - # https://chromium-review.googlesource.com/c/chromium/src/+/6633292 - (fetchpatch2 { - url = "https://github.com/chromium/chromium/commit/b0ff8c3b258a8816c05bdebf472dbba719d3c491.patch?full_index=1"; - stripLen = 1; - extraPrefix = "src/3rdparty/chromium/"; - hash = "sha256-zDIlHd8bBtrThkFnrcyA13mhXYIQt6sKsi6qAyQ34yo="; - }) ]; postPatch = ''