Merge pull request #70846 from athas/ispc-macos

ispc: add x86_64-darwin to platforms.

Closes https://github.com/NixOS/nixpkgs/pull/71134
This commit is contained in:
Mario Rodas 2019-11-03 21:03:41 -05:00 committed by GitHub
commit 22378e6996
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 ];
};
}