boost174: init at 1.74.0
This commit is contained in:
parent
35e296f5e5
commit
78b030f317
15
pkgs/development/libraries/boost/1.74.nix
Normal file
15
pkgs/development/libraries/boost/1.74.nix
Normal 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";
|
||||
};
|
||||
})
|
||||
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user