mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 13:41:26 +00:00
rustc: don't build on i686
This commit is contained in:
parent
c47cc7e163
commit
9f86136cef
|
@ -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);
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue