about summary refs log tree commit diff
path: root/pkgs/development/compilers/llvm
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2019-04-24 20:11:07 -0400
committerMatthew Bauer <mjbauer95@gmail.com>2019-04-26 21:55:11 -0400
commitda38a49a24c69b7c0356157d4e92f6d96f6e2bc0 (patch)
treedb80b9ba9a0b36e2ceca832163611fe3976deff9 /pkgs/development/compilers/llvm
parent63831c398a1d9f4cca0d39c723347f15447b9f16 (diff)
downloadnixlib-da38a49a24c69b7c0356157d4e92f6d96f6e2bc0.tar
nixlib-da38a49a24c69b7c0356157d4e92f6d96f6e2bc0.tar.gz
nixlib-da38a49a24c69b7c0356157d4e92f6d96f6e2bc0.tar.bz2
nixlib-da38a49a24c69b7c0356157d4e92f6d96f6e2bc0.tar.lz
nixlib-da38a49a24c69b7c0356157d4e92f6d96f6e2bc0.tar.xz
nixlib-da38a49a24c69b7c0356157d4e92f6d96f6e2bc0.tar.zst
nixlib-da38a49a24c69b7c0356157d4e92f6d96f6e2bc0.zip
treewide: mark bad packages
Some old stuff is known not to work.
Diffstat (limited to 'pkgs/development/compilers/llvm')
-rw-r--r--pkgs/development/compilers/llvm/3.7/libc++/default.nix1
-rw-r--r--pkgs/development/compilers/llvm/4/lld.nix1
-rw-r--r--pkgs/development/compilers/llvm/5/lld.nix1
3 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/compilers/llvm/3.7/libc++/default.nix b/pkgs/development/compilers/llvm/3.7/libc++/default.nix
index 462e35a483f4..7b7ac7297ba3 100644
--- a/pkgs/development/compilers/llvm/3.7/libc++/default.nix
+++ b/pkgs/development/compilers/llvm/3.7/libc++/default.nix
@@ -43,5 +43,6 @@ stdenv.mkDerivation rec {
     description = "A new implementation of the C++ standard library, targeting C++11";
     license = with stdenv.lib.licenses; [ ncsa mit ];
     platforms = stdenv.lib.platforms.unix;
+    badPlatforms = [ "x86_64-darwin" ];
   };
 }
diff --git a/pkgs/development/compilers/llvm/4/lld.nix b/pkgs/development/compilers/llvm/4/lld.nix
index 21b0c1c3601c..cf6de26a9e83 100644
--- a/pkgs/development/compilers/llvm/4/lld.nix
+++ b/pkgs/development/compilers/llvm/4/lld.nix
@@ -27,5 +27,6 @@ stdenv.mkDerivation {
     homepage    = http://lld.llvm.org/;
     license     = stdenv.lib.licenses.ncsa;
     platforms   = stdenv.lib.platforms.all;
+    badPlatforms = [ "x86_64-darwin" ];
   };
 }
diff --git a/pkgs/development/compilers/llvm/5/lld.nix b/pkgs/development/compilers/llvm/5/lld.nix
index 9a47435cf140..bf23f80ef103 100644
--- a/pkgs/development/compilers/llvm/5/lld.nix
+++ b/pkgs/development/compilers/llvm/5/lld.nix
@@ -27,5 +27,6 @@ stdenv.mkDerivation {
     homepage    = http://lld.llvm.org/;
     license     = stdenv.lib.licenses.ncsa;
     platforms   = stdenv.lib.platforms.all;
+    badPlatforms = [ "x86_64-darwin" ];
   };
 }