summary refs log tree commit diff
path: root/pkgs/stdenv/default.nix
diff options
context:
space:
mode:
authorNicolas Pierron <nicolas.b.pierron@gmail.com>2012-04-15 23:41:25 +0000
committerNicolas Pierron <nicolas.b.pierron@gmail.com>2012-04-15 23:41:25 +0000
commit82b308bf110ed9d246922bc8f742837323585a24 (patch)
tree113de21f14312edbbaab15445b870cc8a2140180 /pkgs/stdenv/default.nix
parent6a9ac1f01699a28c2d16ee082ff744291675df92 (diff)
downloadnixpkgs-82b308bf110ed9d246922bc8f742837323585a24.tar
nixpkgs-82b308bf110ed9d246922bc8f742837323585a24.tar.gz
nixpkgs-82b308bf110ed9d246922bc8f742837323585a24.tar.bz2
nixpkgs-82b308bf110ed9d246922bc8f742837323585a24.tar.lz
nixpkgs-82b308bf110ed9d246922bc8f742837323585a24.tar.xz
nixpkgs-82b308bf110ed9d246922bc8f742837323585a24.tar.zst
nixpkgs-82b308bf110ed9d246922bc8f742837323585a24.zip
Add armv7l support.
svn path=/nixpkgs/trunk/; revision=33798
Diffstat (limited to 'pkgs/stdenv/default.nix')
-rw-r--r--pkgs/stdenv/default.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/stdenv/default.nix b/pkgs/stdenv/default.nix
index 03f14d6d57b..c454204f897 100644
--- a/pkgs/stdenv/default.nix
+++ b/pkgs/stdenv/default.nix
@@ -55,6 +55,7 @@ rec {
     if stdenvType == "i686-linux" then stdenvLinux else
     if stdenvType == "x86_64-linux" then stdenvLinux else
     if stdenvType == "armv5tel-linux" then stdenvLinux else
+    if stdenvType == "armv7l-linux" then stdenvLinux else
     if stdenvType == "mips64el-linux" then stdenvLinux else
     if stdenvType == "powerpc-linux" then /* stdenvLinux */ stdenvNative else
     if stdenvType == "i686-mingw" then stdenvMinGW else