From c90998d5cf8b8d7983f5f547546ee9ef2ad11688 Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Mon, 24 Apr 2017 21:23:56 +0300 Subject: [PATCH] Revert "rustc: don't build on i686" This reverts commit 9f86136cefbd3e050b96a307346278fe9ad8a5bf. Rust is nowadays required for building Firefox, so the channel updates are blocked on this. (It also builds fine for me.) --- pkgs/development/compilers/rust/rustc.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/compilers/rust/rustc.nix b/pkgs/development/compilers/rust/rustc.nix index f2fe7fbca7a..a693afb8b59 100644 --- a/pkgs/development/compilers/rust/rustc.nix +++ b/pkgs/development/compilers/rust/rustc.nix @@ -153,6 +153,6 @@ stdenv.mkDerivation { description = "A safe, concurrent, practical language"; maintainers = with maintainers; [ madjar cstrahan wizeman globin havvy wkennington retrry ]; license = [ licenses.mit licenses.asl20 ]; - platforms = subtractLists platforms.i686 (platforms.linux ++ platforms.darwin); + platforms = platforms.linux ++ platforms.darwin; }; }