summary refs log tree commit diff
path: root/pkgs/development/libraries/gsl
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas@tuxera.com>2018-04-04 16:53:00 +0300
committerTuomas Tynkkynen <tuomas@tuxera.com>2018-04-04 16:54:39 +0300
commitaf16d71e881d87075a76a206f03e96e97fce9e0d (patch)
treea44af7a7681f836db900d3902d64c709de911356 /pkgs/development/libraries/gsl
parent63c6c2dbdc4a63a0a5f4b8eb9642bb9fe69f387e (diff)
downloadnixpkgs-af16d71e881d87075a76a206f03e96e97fce9e0d.tar
nixpkgs-af16d71e881d87075a76a206f03e96e97fce9e0d.tar.gz
nixpkgs-af16d71e881d87075a76a206f03e96e97fce9e0d.tar.bz2
nixpkgs-af16d71e881d87075a76a206f03e96e97fce9e0d.tar.lz
nixpkgs-af16d71e881d87075a76a206f03e96e97fce9e0d.tar.xz
nixpkgs-af16d71e881d87075a76a206f03e96e97fce9e0d.tar.zst
nixpkgs-af16d71e881d87075a76a206f03e96e97fce9e0d.zip
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 :(
Diffstat (limited to 'pkgs/development/libraries/gsl')
-rw-r--r--pkgs/development/libraries/gsl/default.nix3
1 files changed, 2 insertions, 1 deletions
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";