boost168: init

Drop patch from 1.67 that's already included.
This commit is contained in:
Will Dietz 2018-08-09 13:18:37 -05:00
parent cf68a14a01
commit 1f723abfac
2 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,11 @@
{ stdenv, callPackage, fetchurl, fetchpatch, hostPlatform, buildPlatform, ... } @ args:
callPackage ./generic.nix (args // rec {
version = "1.68_0";
src = fetchurl {
url = "mirror://sourceforge/boost/boost_1_68_0.tar.bz2";
# SHA256 from http://www.boost.org/users/history/version_1_68_0.html
sha256 = "7f6130bc3cf65f56a618888ce9d5ea704fa10b462be126ad053e80e553d6d8b7";
};
})

View File

@ -8915,6 +8915,7 @@ with pkgs;
boost165 = callPackage ../development/libraries/boost/1.65.nix { };
boost166 = callPackage ../development/libraries/boost/1.66.nix { };
boost167 = callPackage ../development/libraries/boost/1.67.nix { };
boost168 = callPackage ../development/libraries/boost/1.68.nix { };
boost16x = boost167;
boost = boost16x;