swift: loosen platforms to all linux other than known-bad i686

This commit is contained in:
Will Dietz 2018-03-31 00:19:46 -05:00
parent 26f537ffab
commit 25b81a053e

View file

@ -286,7 +286,8 @@ stdenv.mkDerivation rec {
maintainers = with maintainers; [ dtzWill ];
license = licenses.asl20;
# Swift doesn't support 32bit Linux, unknown on other platforms.
platforms = [ "x86_64-linux" ];
platforms = platforms.linux;
badPlatforms = platforms.i686;
};
}