forked from mirrors/nixpkgs
swift: remove i686-linux from platforms, limit to x86-64-linux
Don't know that other platforms will fail but it seems likely since we're using build profile intended for 64bit Ubuntu.
This commit is contained in:
parent
72bb7b399a
commit
bccc5ae82c
|
@ -258,7 +258,8 @@ stdenv.mkDerivation rec {
|
|||
homepage = "https://github.com/apple/swift";
|
||||
maintainers = with maintainers; [ jb55 dtzWill ];
|
||||
license = licenses.asl20;
|
||||
platforms = platforms.linux;
|
||||
# Swift doesn't support 32bit Linux, unknown on other platforms.
|
||||
platforms = [ "x86_64-linux" ];
|
||||
};
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue