From 6538f204853eb8c39a46b1cae247694ea7e2afba Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Fri, 25 Feb 2011 11:01:50 +0000 Subject: [PATCH] * Revert to Boost 1.44 for now, as 1.46 breaks several packages. svn path=/nixpkgs/branches/x-updates/; revision=26110 --- pkgs/development/libraries/boost/default.nix | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/pkgs/development/libraries/boost/default.nix b/pkgs/development/libraries/boost/default.nix index 67acb64cb35..c4b9f23bb23 100644 --- a/pkgs/development/libraries/boost/default.nix +++ b/pkgs/development/libraries/boost/default.nix @@ -33,20 +33,19 @@ let in stdenv.mkDerivation { - name = "boost-1.46.0"; + name = "boost-1.44.0"; - meta = with stdenv.lib; { + meta = { homepage = "http://boost.org/"; description = "Boost C++ Library Collection"; license = "boost-license"; - platforms = platforms.all; - maintainers = [ maintainers.simons maintainers.urkud ]; + maintainers = [ stdenv.lib.maintainers.simons ]; }; src = fetchurl { - url = "mirror://sourceforge/boost/boost_1_46_0.tar.bz2"; - sha256 = "0ndsiv06332gbh6wj68pcnci3l5qrc5pm1ca9dkmxhpxj83zd41g"; + url = "mirror://sourceforge/boost/boost_1_44_0.tar.bz2"; + sha256 = "1nvq36mvzr1fr85q0jh86rk3bk65s1y55jgqgzfg3lcpkl12ihs5"; }; enableParallelBuilding = true;