about summary refs log tree commit diff
path: root/pkgs/development/compilers/llvm
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas@tuxera.com>2018-03-25 16:39:10 +0300
committerTuomas Tynkkynen <tuomas@tuxera.com>2018-03-25 16:39:10 +0300
commitbec461a35ac10a4c8bc796df840722b785db3a44 (patch)
tree8e63874edf5b9bf58c4e4fbd6615ff0ac82ba258 /pkgs/development/compilers/llvm
parent3ca8b20328ca6aebe15e6356be2c2249c2a5a67f (diff)
downloadnixlib-bec461a35ac10a4c8bc796df840722b785db3a44.tar
nixlib-bec461a35ac10a4c8bc796df840722b785db3a44.tar.gz
nixlib-bec461a35ac10a4c8bc796df840722b785db3a44.tar.bz2
nixlib-bec461a35ac10a4c8bc796df840722b785db3a44.tar.lz
nixlib-bec461a35ac10a4c8bc796df840722b785db3a44.tar.xz
nixlib-bec461a35ac10a4c8bc796df840722b785db3a44.tar.zst
nixlib-bec461a35ac10a4c8bc796df840722b785db3a44.zip
llvm_34, llvm_35: Disable on aarch64
https://hydra.nixos.org/build/71176565
https://hydra.nixos.org/build/71167754
Diffstat (limited to 'pkgs/development/compilers/llvm')
-rw-r--r--pkgs/development/compilers/llvm/3.4/llvm.nix2
-rw-r--r--pkgs/development/compilers/llvm/3.5/llvm.nix2
2 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/compilers/llvm/3.4/llvm.nix b/pkgs/development/compilers/llvm/3.4/llvm.nix
index 27047e7d941c..30f2dba28831 100644
--- a/pkgs/development/compilers/llvm/3.4/llvm.nix
+++ b/pkgs/development/compilers/llvm/3.4/llvm.nix
@@ -90,6 +90,6 @@ in stdenv.mkDerivation rec {
     homepage    = http://llvm.org/;
     license     = stdenv.lib.licenses.ncsa;
     maintainers = with stdenv.lib.maintainers; [ lovek323 raskin viric ];
-    platforms   = stdenv.lib.platforms.all;
+    platforms = [ "i686-linux" "x86_64-linux" "x86_64-darwin"];
   };
 }
diff --git a/pkgs/development/compilers/llvm/3.5/llvm.nix b/pkgs/development/compilers/llvm/3.5/llvm.nix
index 00b2548d56e6..4d0cb8930f57 100644
--- a/pkgs/development/compilers/llvm/3.5/llvm.nix
+++ b/pkgs/development/compilers/llvm/3.5/llvm.nix
@@ -98,7 +98,7 @@ in stdenv.mkDerivation rec {
     homepage    = http://llvm.org/;
     license     = stdenv.lib.licenses.ncsa;
     maintainers = with stdenv.lib.maintainers; [ lovek323 raskin viric ];
-    platforms   = stdenv.lib.platforms.all;
+    platforms = [ "i686-linux" "x86_64-linux" "x86_64-darwin"];
   };
 }