summary refs log tree commit diff
path: root/pkgs/development/libraries/boost/default.nix
blob: fe4cdcf0337071a44c6534ef63dc76823d678ae3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{stdenv, fetchurl, icu, zlib, bzip2, python}:

stdenv.mkDerivation {
  name = "boost-1.34.1";
  src = fetchurl {
    url = mirror://sourceforge/boost/boost_1_34_1.tar.bz2;
    sha256 = "0k7cjsgg3iqy49f9nnhyp945yry0bichd88p04sg3915n1snr1hg";
  };
  buildInputs = [icu zlib bzip2 python];
  preConfigure="
    sed -e 's@^BJAM_CONFIG=\"\"@BJAM_CONFIG=\"--layout=system release threading=multi link=shared\"@g' -i configure
  ";
  patches = [./gcc-4.2.patch];
  configureFlags="--with-icu=${icu}";
}