mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
Bumped boost libraries to version 1.38.0.
svn path=/nixpkgs/trunk/; revision=14031
This commit is contained in:
parent
f94091ad09
commit
05eb6625ed
20
pkgs/development/libraries/boost/1.38.0.nix
Normal file
20
pkgs/development/libraries/boost/1.38.0.nix
Normal file
@ -0,0 +1,20 @@
|
||||
{ stdenv, fetchurl, icu, expat, zlib, bzip2, python, version }:
|
||||
|
||||
assert version == "1.38.0";
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "boost-1.38.0";
|
||||
meta = {
|
||||
homepage = "http://boost.org/";
|
||||
description = "Boost C++ Library Collection";
|
||||
license = "boost-license";
|
||||
};
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/boost/boost_1_38_0.tar.bz2";
|
||||
sha256 = "1bs3b11y66xkdqjl38xb20hipx0pjr0h72fj6755655j6b4kz37z";
|
||||
};
|
||||
buildInputs = [icu expat zlib bzip2 python];
|
||||
preConfigure =
|
||||
"sed -e 's@^BJAM_CONFIG=\"\"@BJAM_CONFIG=\"-sEXPAT_INCLUDE=${expat}/include -sEXPAT_LIBPATH=${expat}/lib --layout=system variant=debug,release threading=single,multi link=shared,static\"@g' -i configure";
|
||||
configureFlags = "--with-icu=${icu} --with-python=${python}";
|
||||
}
|
@ -2670,7 +2670,7 @@ let
|
||||
boostVersionChoice = version: selectVersion ../development/libraries/boost version {
|
||||
inherit fetchurl stdenv icu expat zlib bzip2 python;
|
||||
};
|
||||
boost = boostVersionChoice "1.37.0";
|
||||
boost = boostVersionChoice "1.38.0";
|
||||
|
||||
buddy = import ../development/libraries/buddy {
|
||||
inherit fetchurl stdenv;
|
||||
@ -7705,7 +7705,7 @@ let
|
||||
};
|
||||
|
||||
mozplugger = builderDefsPackage (import ../applications/networking/browsers/mozilla-plugins/mozplugger) {
|
||||
inherit firefox;
|
||||
inherit firefox;
|
||||
inherit (xlibs) libX11 xproto;
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user