Updating boost.

Maybe we want a 'default.nix' reflecting the latest version, instead of changing and changing the version?

svn path=/nixpkgs/trunk/; revision=20995
This commit is contained in:
Lluís Batlle i Rossell 2010-04-09 15:40:18 +00:00
parent 6c37624153
commit 2f67d3cc66
2 changed files with 4 additions and 4 deletions

View File

@ -33,7 +33,7 @@ let
in in
stdenv.mkDerivation { stdenv.mkDerivation {
name = "boost-1.41.0"; name = "boost-1.42.0";
meta = { meta = {
homepage = "http://boost.org/"; homepage = "http://boost.org/";
@ -42,8 +42,8 @@ stdenv.mkDerivation {
}; };
src = fetchurl { src = fetchurl {
url = "mirror://sourceforge/boost/boost_1_41_0.tar.bz2"; url = "mirror://sourceforge/boost/boost_1_42_0.tar.bz2";
sha256 = "09n7bjac2nlp7c8khpml2mq4qm33w2dn4ksb50c37wga95klxy8y"; sha256 = "02g6m6f7m11ig93p5sx7sfq75c15y9kn2pa3csn1bkjhs9dvj7jb";
}; };
buildInputs = [icu expat zlib bzip2 python]; buildInputs = [icu expat zlib bzip2 python];

View File

@ -3383,7 +3383,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.41.0.nix) { boost = makeOverridable (import ../development/libraries/boost/1.42.0.nix) {
inherit fetchurl stdenv icu expat zlib bzip2 python; inherit fetchurl stdenv icu expat zlib bzip2 python;
}; };