boost174: init at 1.74.0

This commit is contained in:
Rasmus Rendal 2020-10-11 10:04:43 +02:00
parent 35e296f5e5
commit 78b030f317
2 changed files with 17 additions and 1 deletions

View File

@ -0,0 +1,15 @@
{ stdenv, callPackage, fetchurl, fetchpatch, ... } @ args:
callPackage ./generic.nix (args // rec {
version = "1.74.0";
src = fetchurl {
urls = [
"mirror://sourceforge/boost/boost_1_74_0.tar.bz2"
"https://dl.bintray.com/boostorg/release/1.74.0/source/boost_1_74_0.tar.bz2"
];
# SHA256 from http://www.boost.org/users/history/version_1_74_0.html
sha256 = "83bfc1507731a0906e387fc28b7ef5417d591429e51e788417fe9ff025e116b1";
};
})

View File

@ -11373,7 +11373,8 @@ in
boost171 = callPackage ../development/libraries/boost/1.71.nix { };
boost172 = callPackage ../development/libraries/boost/1.72.nix { };
boost173 = callPackage ../development/libraries/boost/1.73.nix { };
boost17x = boost173;
boost174 = callPackage ../development/libraries/boost/1.74.nix { };
boost17x = boost174;
boost = boost16x;
boost_process = callPackage ../development/libraries/boost-process { };