3
0
Fork 0
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:
Will Dietz 2017-03-29 07:42:16 -05:00
parent 72bb7b399a
commit bccc5ae82c

View file

@ -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" ];
};
}