boost169: init (at 1.69)

This commit is contained in:
Will Dietz 2018-12-15 23:47:09 -06:00
parent f640a81198
commit 28d85b274d
2 changed files with 12 additions and 0 deletions

View file

@ -0,0 +1,11 @@
{ stdenv, callPackage, fetchurl, fetchpatch, ... } @ args:
callPackage ./generic.nix (args // rec {
version = "1.69_0";
src = fetchurl {
url = "mirror://sourceforge/boost/boost_1_69_0.tar.bz2";
# SHA256 from http://www.boost.org/users/history/version_1_69_0.html
sha256 = "8f32d4617390d1c2d16f26a27ab60d97807b35440d45891fa340fc2648b04406";
};
})

View file

@ -9369,6 +9369,7 @@ in
boost166 = callPackage ../development/libraries/boost/1.66.nix { };
boost167 = callPackage ../development/libraries/boost/1.67.nix { };
boost168 = callPackage ../development/libraries/boost/1.68.nix { };
boost169 = callPackage ../development/libraries/boost/1.69.nix { };
boost16x = boost167;
boost = boost16x;