boost-headers: update to version 1.54.0

This commit is contained in:
Peter Simons 2013-07-03 21:26:31 +02:00
parent cb31653acb
commit ea04555518
2 changed files with 6 additions and 6 deletions

View File

@ -1,18 +1,18 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation {
name = "boost-headers-1.53.0";
name = "boost-headers-1.54.0";
src = fetchurl {
url = "mirror://sourceforge/boost/boost_1_53_0.tar.bz2";
sha256 = "15livg6y1l3gdsg6ybvp3y4gp0w3xh1rdcq5bjf0qaw804dh92pq";
url = "mirror://sourceforge/boost/boost_1_54_0.tar.bz2";
sha256 = "07df925k56pbz3gvhxpx54aij34qd40a7sxw4im11brnwdyr4zh4";
};
phases = [ "installPhase" ];
installPhase = ''
mkdir -p $out/include
tar xf $src -C $out/include --strip-components=1 boost_1_53_0/boost
tar xf $src -C $out/include --strip-components=1 boost_1_54_0/boost
'';
meta = {

View File

@ -3703,8 +3703,8 @@ let
boost154 = callPackage ../development/libraries/boost/1.54.nix { };
boost = boost154;
boostHeaders153 = callPackage ../development/libraries/boost/1.53-headers.nix { };
boostHeaders = boostHeaders153;
boostHeaders154 = callPackage ../development/libraries/boost/1.54-headers.nix { };
boostHeaders = boostHeaders154;
botan = callPackage ../development/libraries/botan { };