about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2019-11-03 16:20:00 -0500
committerMario Rodas <marsam@users.noreply.github.com>2019-11-03 16:20:00 -0500
commitb60853cdca2c0004b692bd27b6b3d3a8ed833b32 (patch)
treeaf289fe7dcdfeff972690a689b544f5b8fa7f116
parent5ddd4dbb124bee11bf84b79547900a0e6499cfaf (diff)
downloadnixlib-b60853cdca2c0004b692bd27b6b3d3a8ed833b32.tar
nixlib-b60853cdca2c0004b692bd27b6b3d3a8ed833b32.tar.gz
nixlib-b60853cdca2c0004b692bd27b6b3d3a8ed833b32.tar.bz2
nixlib-b60853cdca2c0004b692bd27b6b3d3a8ed833b32.tar.lz
nixlib-b60853cdca2c0004b692bd27b6b3d3a8ed833b32.tar.xz
nixlib-b60853cdca2c0004b692bd27b6b3d3a8ed833b32.tar.zst
nixlib-b60853cdca2c0004b692bd27b6b3d3a8ed833b32.zip
ispc: only check on Linux
The test suite tries to execute `transcendentals` tests, which is not
expected to work anywhere except Linux.
-rw-r--r--pkgs/development/compilers/ispc/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/compilers/ispc/default.nix b/pkgs/development/compilers/ispc/default.nix
index d07bf6b57335..0c44595b24bc 100644
--- a/pkgs/development/compilers/ispc/default.nix
+++ b/pkgs/development/compilers/ispc/default.nix
@@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
   # there are missing dependencies in the Makefile, causing sporadic build failures
   enableParallelBuilding = false;
 
-  doCheck = true;
+  doCheck = stdenv.isLinux;
 
   buildInputs = with llvmPackages; [
     which