Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

boost171: init at 1.71.0 #67282

Merged
merged 3 commits into from Nov 16, 2019
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
12 changes: 12 additions & 0 deletions pkgs/development/libraries/boost/1.71.nix
@@ -0,0 +1,12 @@
{ 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";
url = "https://dl.bintray.com/boostorg/release/1.71.0/source/boost_1_71_0.tar.bz2";
dtzWill marked this conversation as resolved.
Show resolved Hide resolved
# SHA256 from http://www.boost.org/users/history/version_1_71_0.html
sha256 = "d73a8da01e8bf8c7eda40b4c84915071a8c8a0df4a6734537ddde4a8580524ee";
};
})
3 changes: 2 additions & 1 deletion pkgs/top-level/all-packages.nix
Expand Up @@ -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 { };
Expand Down