boost180: init at 1.80.0

This commit is contained in:
Alex Wied 2022-10-21 03:01:18 -04:00
parent 969c3ccf30
commit aa473065cb
3 changed files with 17 additions and 0 deletions

View file

@ -0,0 +1,14 @@
{ callPackage, fetchurl, fetchpatch, ... } @ args:
callPackage ./generic.nix (args // rec {
version = "1.80.0";
src = fetchurl {
urls = [
"mirror://sourceforge/boost/boost_${builtins.replaceStrings ["."] ["_"] version}.tar.bz2"
"https://boostorg.jfrog.io/artifactory/main/release/${version}/source/boost_${builtins.replaceStrings ["."] ["_"] version}.tar.bz2"
];
# SHA256 from http://www.boost.org/users/history/version_1_80_0.html
sha256 = "1e19565d82e43bc59209a168f5ac899d3ba471d55c7610c677d4ccf2c9c500c0";
};
})

View file

@ -32,4 +32,5 @@ in {
boost177 = makeBoost ./1.77.nix;
boost178 = makeBoost ./1.78.nix;
boost179 = makeBoost ./1.79.nix;
boost180 = makeBoost ./1.80.nix;
}

View file

@ -18086,11 +18086,13 @@ with pkgs;
boost177
boost178
boost179
boost180
;
boost15x = boost159;
boost16x = boost169;
boost17x = boost179;
boost18x = boost180;
boost = boost17x;
boost_process = callPackage ../development/libraries/boost-process { };