summary refs log tree commit diff
path: root/pkgs/development/compilers/ispc/default.nix
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2019-11-05 14:18:08 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2019-11-05 14:18:08 +0100
commitc4e30cf98cef72dfa01aeaa833f3d70d24c6ae3f (patch)
tree316252d7cdc70b4871bb028e3df3d43738fa0920 /pkgs/development/compilers/ispc/default.nix
parentacd2d19484e5c79306110463fe621436fb228d4e (diff)
parent03a9822405d1293e8e5dd90b5da076d9ce52265f (diff)
downloadnixpkgs-c4e30cf98cef72dfa01aeaa833f3d70d24c6ae3f.tar
nixpkgs-c4e30cf98cef72dfa01aeaa833f3d70d24c6ae3f.tar.gz
nixpkgs-c4e30cf98cef72dfa01aeaa833f3d70d24c6ae3f.tar.bz2
nixpkgs-c4e30cf98cef72dfa01aeaa833f3d70d24c6ae3f.tar.lz
nixpkgs-c4e30cf98cef72dfa01aeaa833f3d70d24c6ae3f.tar.xz
nixpkgs-c4e30cf98cef72dfa01aeaa833f3d70d24c6ae3f.tar.zst
nixpkgs-c4e30cf98cef72dfa01aeaa833f3d70d24c6ae3f.zip
Merge staging-next into staging
Diffstat (limited to 'pkgs/development/compilers/ispc/default.nix')
-rw-r--r--pkgs/development/compilers/ispc/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/compilers/ispc/default.nix b/pkgs/development/compilers/ispc/default.nix
index 762d1233bb6..0c44595b24b 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
@@ -67,7 +67,7 @@ stdenv.mkDerivation rec {
     homepage = https://ispc.github.io/ ;
     description = "Intel 'Single Program, Multiple Data' Compiler, a vectorised language";
     license = licenses.bsd3;
-    platforms = ["x86_64-linux"]; # TODO: buildable on more platforms?
+    platforms = ["x86_64-linux" "x86_64-darwin"]; # TODO: buildable on more platforms?
     maintainers = [ maintainers.aristid ];
   };
 }