boost170: init at 1.70.0

This commit is contained in:
Amir Shavit 2019-04-15 13:24:55 +01:00
parent 23ebff30a3
commit 9ce38796b1
2 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,11 @@
{ stdenv, callPackage, fetchurl, fetchpatch, ... } @ args:
callPackage ./generic.nix (args // rec {
version = "1.70.0";
src = fetchurl {
url = "mirror://sourceforge/boost/boost_1_70_0.tar.bz2";
# SHA256 from http://www.boost.org/users/history/version_1_70_0.html
sha256 = "430ae8354789de4fd19ee52f3b1f739e1fba576f0aded0897c3c2bc00fb38778";
};
})

View File

@ -9377,6 +9377,8 @@ in
boost168 = callPackage ../development/libraries/boost/1.68.nix { };
boost169 = callPackage ../development/libraries/boost/1.69.nix { };
boost16x = boost167;
boost170 = callPackage ../development/libraries/boost/1.70.nix { };
boost17x = boost170;
boost = boost16x;
boost_process = callPackage ../development/libraries/boost-process { };