nixpkgs/pkgs/development/libraries/boost/default.nix
Yury G. Kudryashov f1f13ef432 boost: compiles with gcc-4.2
svn path=/nixpkgs/branches/stdenv-updates/; revision=9945
2007-12-15 23:45:53 +00:00

16 lines
496 B
Nix

{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}";
}