Fix some meta.platforms attributes to build more stuff on Darwin

This commit is contained in:
Eelco Dolstra
2013-11-05 10:46:59 +01:00
parent d098a6d926
commit da426c7df5
11 changed files with 11 additions and 11 deletions

View File

@@ -462,7 +462,7 @@ stdenv.mkDerivation ({
# Volunteers needed for the {Cyg,Dar}win ports of *PPL.
# gnatboot is not available out of linux platforms, so we disable the darwin build
# for the gnat (ada compiler).
platforms = stdenv.lib.platforms.linux ++ optionals (langAda == false && libelf == null) [ "i686-darwin" ];
platforms = stdenv.lib.platforms.linux ++ optionals (langAda == false) stdenv.lib.platforms.darwin;
};
}