summary refs log tree commit diff
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas@tuxera.com>2018-04-04 21:57:57 +0300
committerTuomas Tynkkynen <tuomas@tuxera.com>2018-04-04 21:57:57 +0300
commit9c292a0568fe31fa62637223bed9a18686ffb3ee (patch)
treee1df0df12a4afb2d9ba96e8670b7cc3765254bbb
parent814288c571f4940289e1e29a62c979407433e9f1 (diff)
downloadnixpkgs-9c292a0568fe31fa62637223bed9a18686ffb3ee.tar
nixpkgs-9c292a0568fe31fa62637223bed9a18686ffb3ee.tar.gz
nixpkgs-9c292a0568fe31fa62637223bed9a18686ffb3ee.tar.bz2
nixpkgs-9c292a0568fe31fa62637223bed9a18686ffb3ee.tar.lz
nixpkgs-9c292a0568fe31fa62637223bed9a18686ffb3ee.tar.xz
nixpkgs-9c292a0568fe31fa62637223bed9a18686ffb3ee.tar.zst
nixpkgs-9c292a0568fe31fa62637223bed9a18686ffb3ee.zip
llvm_34, llvm_35: Bring ARMv7 back to platforms
This is required for GHC.
-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 30f2dba2883..0b29b04825a 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 = [ "i686-linux" "x86_64-linux" "x86_64-darwin"];
+    platforms = [ "i686-linux" "x86_64-linux" "x86_64-darwin" "armv7l-linux"];
   };
 }
diff --git a/pkgs/development/compilers/llvm/3.5/llvm.nix b/pkgs/development/compilers/llvm/3.5/llvm.nix
index 4d0cb8930f5..7dc134b4fcf 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 = [ "i686-linux" "x86_64-linux" "x86_64-darwin"];
+    platforms = [ "i686-linux" "x86_64-linux" "x86_64-darwin" "armv7l-linux"];
   };
 }