Merge pull request #67282 from dtzWill/feature/boost-1.71

boost171: init at 1.71.0
This commit is contained in:
Will Dietz 2019-11-16 01:15:09 -06:00 committed by GitHub
commit 44d9a86f41
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 17 additions and 1 deletions

View file

@ -0,0 +1,15 @@
{ stdenv, callPackage, fetchurl, fetchpatch, ... } @ args:
callPackage ./generic.nix (args // rec {
version = "1.71.0";
src = fetchurl {
#url = "mirror://sourceforge/boost/boost_1_71_0.tar.bz2";
urls = [
"mirror://sourceforge/boost/boost_1_71_0.tar.bz2"
"https://dl.bintray.com/boostorg/release/1.71.0/source/boost_1_71_0.tar.bz2"
];
# SHA256 from http://www.boost.org/users/history/version_1_71_0.html
sha256 = "d73a8da01e8bf8c7eda40b4c84915071a8c8a0df4a6734537ddde4a8580524ee";
};
})

View file

@ -10721,7 +10721,8 @@ in
boost169 = callPackage ../development/libraries/boost/1.69.nix { };
boost16x = boost167;
boost170 = callPackage ../development/libraries/boost/1.70.nix { };
boost17x = boost170;
boost171 = callPackage ../development/libraries/boost/1.71.nix { };
boost17x = boost171;
boost = boost16x;
boost_process = callPackage ../development/libraries/boost-process { };