Skip to content

Commit

Permalink
rustc: don't build on i686
Browse files Browse the repository at this point in the history
  • Loading branch information
globin committed Mar 30, 2017
1 parent c47cc7e commit 9f86136
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkgs/development/compilers/rust/rustc.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 = platforms.linux ++ platforms.darwin;
platforms = subtractLists platforms.i686 (platforms.linux ++ platforms.darwin);
};
}

0 comments on commit 9f86136

Please sign in to comment.