mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
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:
parent
ea5a0a00a0
commit
ed46e56842
1 changed files with 3 additions and 1 deletions
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue