boost-headers: update to version 1.51.0

This commit is contained in:
Peter Simons 2012-09-25 12:06:36 +02:00
parent bae4524eee
commit d3dc95834a
2 changed files with 6 additions and 6 deletions

View File

@ -1,18 +1,18 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation {
name = "boost-1.50.0-headers";
name = "boost-1.51.0-headers";
src = fetchurl {
url = "mirror://sourceforge/boost/boost_1_50_0.tar.bz2";
sha256 = "0ac5b82g6b5pdhzypgddql0i3i9vvrwf9iqp3lyp19hzr2wf5b69";
url = "mirror://sourceforge/boost/boost_1_51_0.tar.bz2";
sha256 = "fb2d2335a29ee7fe040a197292bfce982af84a645c81688a915c84c925b69696";
};
phases = [ "installPhase" ];
installPhase = ''
mkdir -p $out/include
tar xvf $src -C $out/include --strip-components=1 boost_1_50_0/boost
tar xf $src -C $out/include --strip-components=1 ./boost_1_51_0/boost
'';
meta = {

View File

@ -3317,8 +3317,8 @@ let
boost = boost151;
boostHeaders149 = callPackage ../development/libraries/boost/1.49-headers.nix { };
boostHeaders150 = callPackage ../development/libraries/boost/1.50-headers.nix { };
boostHeaders = boostHeaders150;
boostHeaders151 = callPackage ../development/libraries/boost/1.51-headers.nix { };
boostHeaders = boostHeaders151;
botan = callPackage ../development/libraries/botan { };