all-packages.nix: make 'boost' refer to version 1.46.0 on Darwin

The 1.47.0 version doesn't compile for reasons I cannot debug since I
don't have access to that platform.

svn path=/nixpkgs/trunk/; revision=28616
This commit is contained in:
Peter Simons 2011-08-16 15:20:48 +00:00
parent ea5a0a00a0
commit ed46e56842

View file

@ -3023,7 +3023,9 @@ let
boost144 = callPackage ../development/libraries/boost/1.44.nix { };
boost146 = callPackage ../development/libraries/boost/1.46.nix { };
boost147 = callPackage ../development/libraries/boost/1.47.nix { };
boost = boost147;
# 1.47.0 doesn't compile on Darwin. The issue is probably trivial to
# fix, but no-one has done it yet.
boost = if stdenv.isDarwin then boost146 else boost147;
# A Boost build with all library variants enabled. Very large (about 250 MB).
boostFull = appendToName "full" (boost.override {