boost 1.67 (#41258)

This commit is contained in:
Will Dietz 2018-06-03 07:18:25 -05:00 committed by Orivej Desh
parent 1baf5cfa7c
commit 587b1b77f2
2 changed files with 15 additions and 1 deletions

View file

@ -0,0 +1,13 @@
{ stdenv, callPackage, fetchurl, hostPlatform, buildPlatform, ... } @ args:
callPackage ./generic.nix (args // rec {
version = "1.67_0";
src = fetchurl {
url = "mirror://sourceforge/boost/boost_1_67_0.tar.bz2";
# SHA256 from http://www.boost.org/users/history/version_1_66_0.html
sha256 = "2684c972994ee57fc5632e03bf044746f6eb45d4920c343937a465fd67a5adba";
};
toolset = if stdenv.cc.isClang then "clang" else null;
})

View file

@ -8640,7 +8640,8 @@ with pkgs;
boost164 = callPackage ../development/libraries/boost/1.64.nix { };
boost165 = callPackage ../development/libraries/boost/1.65.nix { };
boost166 = callPackage ../development/libraries/boost/1.66.nix { };
boost16x = boost166;
boost167 = callPackage ../development/libraries/boost/1.67.nix { };
boost16x = boost167;
boost = boost16x;
boost_process = callPackage ../development/libraries/boost-process { };