Merge pull request #24441 from dtzWill/fix/swift-64bit-only

swift: remove i686-linux from platforms, limit to x86-64-linux
This commit is contained in:
Joachim F 2017-03-30 14:01:23 +01:00 committed by GitHub
commit 20bf94424a

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