boost-headers: update to version 1.51.0
This commit is contained in:
parent
bae4524eee
commit
d3dc95834a
|
@ -1,18 +1,18 @@
|
||||||
{ stdenv, fetchurl }:
|
{ stdenv, fetchurl }:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "boost-1.50.0-headers";
|
name = "boost-1.51.0-headers";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://sourceforge/boost/boost_1_50_0.tar.bz2";
|
url = "mirror://sourceforge/boost/boost_1_51_0.tar.bz2";
|
||||||
sha256 = "0ac5b82g6b5pdhzypgddql0i3i9vvrwf9iqp3lyp19hzr2wf5b69";
|
sha256 = "fb2d2335a29ee7fe040a197292bfce982af84a645c81688a915c84c925b69696";
|
||||||
};
|
};
|
||||||
|
|
||||||
phases = [ "installPhase" ];
|
phases = [ "installPhase" ];
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
mkdir -p $out/include
|
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 = {
|
meta = {
|
|
@ -3317,8 +3317,8 @@ let
|
||||||
boost = boost151;
|
boost = boost151;
|
||||||
|
|
||||||
boostHeaders149 = callPackage ../development/libraries/boost/1.49-headers.nix { };
|
boostHeaders149 = callPackage ../development/libraries/boost/1.49-headers.nix { };
|
||||||
boostHeaders150 = callPackage ../development/libraries/boost/1.50-headers.nix { };
|
boostHeaders151 = callPackage ../development/libraries/boost/1.51-headers.nix { };
|
||||||
boostHeaders = boostHeaders150;
|
boostHeaders = boostHeaders151;
|
||||||
|
|
||||||
botan = callPackage ../development/libraries/botan { };
|
botan = callPackage ../development/libraries/botan { };
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue