boost166: init at 1.66.0

This commit is contained in:
Tristan Carel 2017-12-19 07:54:50 +01:00 committed by Frederik Rietdijk
parent a7d4fb8e1d
commit d8a1b34c8e
2 changed files with 16 additions and 1 deletions

View File

@ -0,0 +1,14 @@
{ stdenv, callPackage, fetchurl, ... } @ args:
callPackage ./generic.nix (args // rec {
version = "1.66_0";
src = fetchurl {
url = "mirror://sourceforge/boost/boost_1_66_0.tar.bz2";
# SHA256 from http://www.boost.org/users/history/version_1_66_0.html
sha256 = "5721818253e6a0989583192f96782c4a98eb6204965316df9f5ad75819225ca9";
};
enableNumpy = args.enableNumpy or true;
})

View File

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