From af16d71e881d87075a76a206f03e96e97fce9e0d Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Wed, 4 Apr 2018 16:53:00 +0300 Subject: [PATCH] gsl: Disable tests on aarch64 https://hydra.nixos.org/build/70700906 I opened an upstream bug, but their bug system is e-mail based and I haven't got a single reply which contains an web link :( --- pkgs/development/libraries/gsl/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/development/libraries/gsl/default.nix b/pkgs/development/libraries/gsl/default.nix index afd6391d719..f1eed726eb2 100644 --- a/pkgs/development/libraries/gsl/default.nix +++ b/pkgs/development/libraries/gsl/default.nix @@ -13,7 +13,8 @@ stdenv.mkDerivation rec { ./disable-fma.patch # http://lists.gnu.org/archive/html/bug-gsl/2011-11/msg00019.html ]; - doCheck = stdenv.system != "i686-linux"; # https://lists.gnu.org/archive/html/bug-gsl/2015-11/msg00012.html + # https://lists.gnu.org/archive/html/bug-gsl/2015-11/msg00012.html + doCheck = stdenv.system != "i686-linux" && stdenv.system != "aarch64-linux"; meta = { description = "The GNU Scientific Library, a large numerical library";