9245074c64
Fixing. svn path=/nixpkgs/trunk/; revision=17586
55 lines
1.5 KiB
Nix
55 lines
1.5 KiB
Nix
{ stdenv, fetchurl, icu, expat, zlib, bzip2, python
|
|
, enableRelease ? true
|
|
, enableDebug ? false
|
|
, enableSingleThreaded ? false
|
|
, enableMultiThreaded ? true
|
|
, enableShared ? true
|
|
, enableStatic ? 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";
|
|
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
|
name = "boost-1.40.0";
|
|
|
|
meta = {
|
|
homepage = "http://boost.org/";
|
|
description = "Boost C++ Library Collection";
|
|
license = "boost-license";
|
|
};
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/boost/boost_1_40_0.tar.bz2";
|
|
sha256 = "032k85lfqg9zlx7m4acqy8x4r8950llnxprzjaj6fw2qkcilmkrn";
|
|
};
|
|
|
|
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} install";
|
|
|
|
installPhase = ":";
|
|
}
|