pkgs/development/libraries/boost: updated boost to 1.43.0
svn path=/nixpkgs/trunk/; revision=21638
This commit is contained in:
parent
5eca4b85f1
commit
00b296762a
|
@ -0,0 +1,59 @@
|
||||||
|
{ stdenv, fetchurl, icu, expat, zlib, bzip2, python
|
||||||
|
, enableRelease ? true
|
||||||
|
, enableDebug ? false
|
||||||
|
, enableSingleThreaded ? false
|
||||||
|
, enableMultiThreaded ? true
|
||||||
|
, enableShared ? true
|
||||||
|
, enableStatic ? false
|
||||||
|
, enablePIC ? false
|
||||||
|
}:
|
||||||
|
|
||||||
|
let
|
||||||
|
|
||||||
|
variant = stdenv.lib.concatStringsSep ","
|
||||||
|
(stdenv.lib.optional enableRelease "release" ++
|
||||||
|
stdenv.lib.optional enableDebug "debug");
|
||||||
|
|
||||||
|
threading = stdenv.lib.concatStringsSep ","
|
||||||
|
(stdenv.lib.optional enableSingleThreaded "single" ++
|
||||||
|
stdenv.lib.optional enableMultiThreaded "multi");
|
||||||
|
|
||||||
|
link = stdenv.lib.concatStringsSep ","
|
||||||
|
(stdenv.lib.optional enableShared "shared" ++
|
||||||
|
stdenv.lib.optional enableStatic "static");
|
||||||
|
|
||||||
|
# To avoid library name collisions
|
||||||
|
finalLayout = if ((enableRelease && enableDebug) ||
|
||||||
|
(enableSingleThreaded && enableMultiThreaded) ||
|
||||||
|
(enableShared && enableStatic)) then
|
||||||
|
"tagged" else "system";
|
||||||
|
|
||||||
|
cflags = if (enablePIC) then "cflags=-fPIC cxxflags=-fPIC linkflags=-fPIC" else "";
|
||||||
|
|
||||||
|
in
|
||||||
|
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
name = "boost-1.43.0";
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
homepage = "http://boost.org/";
|
||||||
|
description = "Boost C++ Library Collection";
|
||||||
|
license = "boost-license";
|
||||||
|
|
||||||
|
maintainers = [ stdenv.lib.maintainers.simons ];
|
||||||
|
};
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "mirror://sourceforge/boost/boost_1_43_0.tar.bz2";
|
||||||
|
sha256 = "0831h19ph65r2rai6ipk5c2bx04af8q423mzr89fh454385i0krl";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [icu expat zlib bzip2 python];
|
||||||
|
|
||||||
|
configureScript = "./bootstrap.sh";
|
||||||
|
configureFlags = "--with-icu=${icu} --with-python=${python}/bin/python";
|
||||||
|
|
||||||
|
buildPhase = "./bjam -sEXPAT_INCLUDE=${expat}/include -sEXPAT_LIBPATH=${expat}/lib --layout=${finalLayout} variant=${variant} threading=${threading} link=${link} ${cflags} install";
|
||||||
|
|
||||||
|
installPhase = ":";
|
||||||
|
}
|
|
@ -3502,7 +3502,7 @@ let
|
||||||
inherit fetchurl stdenv icu expat zlib bzip2 python;
|
inherit fetchurl stdenv icu expat zlib bzip2 python;
|
||||||
};
|
};
|
||||||
|
|
||||||
boost = makeOverridable (import ../development/libraries/boost/1.42.0.nix) {
|
boost = makeOverridable (import ../development/libraries/boost/1.43.0.nix) {
|
||||||
inherit fetchurl stdenv icu expat zlib bzip2 python;
|
inherit fetchurl stdenv icu expat zlib bzip2 python;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue