Merge pull request #59602 from amirshavit/boost170

boost 170: init at 1.70.0
This commit is contained in:
Peter Simons 2019-05-06 14:41:17 +02:00 committed by GitHub
commit 3039b8db0c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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

@ -9797,6 +9797,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 { };