summary refs log tree commit diff
path: root/pkgs/lib
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2012-01-21 00:34:51 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2012-01-21 00:34:51 +0000
commit4a1c721c01367307c28401f142d4149a53e062e4 (patch)
tree255745d7c7bc9865e89a66dd86957d4af0a0f906 /pkgs/lib
parente6c1aa2005a35b415cfb0c6604a087bb99ec4368 (diff)
Changing every reference from mips64-linux to mips64el-linux. That's
what the new nix thinks the fuloong is.

Anyone having the old nix should use a nixpkgs previous to this change to build
the new nix. And then, with the new nix, he can use any newer nixpkgs revision.

svn path=/nixpkgs/trunk/; revision=31751
Diffstat (limited to 'pkgs/lib')
-rw-r--r--pkgs/lib/platforms.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/lib/platforms.nix b/pkgs/lib/platforms.nix
index 19ceb16fcff5e..c10d0e63a97a3 100644
--- a/pkgs/lib/platforms.nix
+++ b/pkgs/lib/platforms.nix
@@ -3,7 +3,7 @@ let lists = import ./lists.nix; in
 rec {
   gnu = linux; /* ++ hurd ++ kfreebsd ++ ... */
   linux = ["i686-linux" "x86_64-linux" "powerpc-linux" "armv5tel-linux"
-    "mips64-linux"];
+    "mips64el-linux"];
   darwin = ["i686-darwin" "powerpc-darwin" "x86_64-darwin"];
   freebsd = ["i686-freebsd" "x86_64-freebsd" "powerpc-freebsd"];
   openbsd = ["i686-openbsd" "x86_64-openbsd"];