about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2010-03-17 10:17:32 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2010-03-17 10:17:32 +0000
commit4824ecbb62a867ecd3d09d605f5e8413ff4ed7f1 (patch)
treef076fddec3396f9d52714a4a9f5e7a7de1dac5d6 /pkgs/development
parent6934d0770cee97e75e43c2e1b88716a8a94700f8 (diff)
downloadnixlib-4824ecbb62a867ecd3d09d605f5e8413ff4ed7f1.tar
nixlib-4824ecbb62a867ecd3d09d605f5e8413ff4ed7f1.tar.gz
nixlib-4824ecbb62a867ecd3d09d605f5e8413ff4ed7f1.tar.bz2
nixlib-4824ecbb62a867ecd3d09d605f5e8413ff4ed7f1.tar.lz
nixlib-4824ecbb62a867ecd3d09d605f5e8413ff4ed7f1.tar.xz
nixlib-4824ecbb62a867ecd3d09d605f5e8413ff4ed7f1.tar.zst
nixlib-4824ecbb62a867ecd3d09d605f5e8413ff4ed7f1.zip
Trying to remove more hydra evaluation errors related to gcc.
svn path=/nixpkgs/trunk/; revision=20687
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/compilers/gcc-4.4/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/development/compilers/gcc-4.4/default.nix b/pkgs/development/compilers/gcc-4.4/default.nix
index 85a3aee4c894..9ec2c4859921 100644
--- a/pkgs/development/compilers/gcc-4.4/default.nix
+++ b/pkgs/development/compilers/gcc-4.4/default.nix
@@ -221,7 +221,9 @@ stdenv.mkDerivation ({
     ];
 
     # Volunteers needed for the {Cyg,Dar}win ports of *PPL.
-    platforms = stdenv.lib.platforms.linux ++ [ "i686-darwin" ];
+    # 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) [ "i686-darwin" ];
   };
 }
 // (if langVhdl then rec {