From b7c800502a5b51e1f01046889766ca48e9fb179b Mon Sep 17 00:00:00 2001 From: Theodore Ni <3806110+tjni@users.noreply.github.com> Date: Sun, 27 Aug 2023 01:01:33 -0700 Subject: glog: disable logging tests on aarch64-darwin --- pkgs/development/libraries/glog/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/libraries/glog/default.nix b/pkgs/development/libraries/glog/default.nix index 85e9770f989..53377022ad6 100644 --- a/pkgs/development/libraries/glog/default.nix +++ b/pkgs/development/libraries/glog/default.nix @@ -53,6 +53,8 @@ stdenv.mkDerivation rec { let excludedTests = lib.optionals stdenv.isDarwin [ "mock-log" + ] ++ lib.optionals (stdenv.isDarwin && stdenv.isAarch64) [ + "logging" # works around segfaults on aarch64-darwin for now ]; excludedTestsRegex = lib.optionalString (excludedTests != [ ]) "(${lib.concatStringsSep "|" excludedTests})"; in -- cgit 1.4.1