boost171: init at 1.71.0

This commit is contained in:
Will Dietz 2019-08-19 15:25:28 -05:00
parent 0c20b6a9df
commit 3a192fb519
No known key found for this signature in database
GPG Key ID: EBB0EA4124809D02
2 changed files with 13 additions and 1 deletions

View File

@ -0,0 +1,11 @@
{ 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";
# SHA256 from http://www.boost.org/users/history/version_1_71_0.html
sha256 = "d73a8da01e8bf8c7eda40b4c84915071a8c8a0df4a6734537ddde4a8580524ee";
};
})

View File

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