From b296fca3b6eb9b96268ecc713f37a1f0be20de84 Mon Sep 17 00:00:00 2001 From: Mauricio Collares Date: Thu, 16 Dec 2021 19:13:53 -0300 Subject: [PATCH] gsl: re-enable check phase on aarch64 --- pkgs/development/libraries/gsl/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/libraries/gsl/default.nix b/pkgs/development/libraries/gsl/default.nix index dec2125974d7..9cc27ef48984 100644 --- a/pkgs/development/libraries/gsl/default.nix +++ b/pkgs/development/libraries/gsl/default.nix @@ -17,7 +17,7 @@ stdenv.mkDerivation rec { NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isx86_64 "-mno-fma"; # https://lists.gnu.org/archive/html/bug-gsl/2015-11/msg00012.html - doCheck = stdenv.hostPlatform.system != "i686-linux" && stdenv.hostPlatform.system != "aarch64-linux"; + doCheck = stdenv.hostPlatform.system != "i686-linux"; meta = { description = "The GNU Scientific Library, a large numerical library";