boost181: init at 1.81.0

This commit is contained in:
Weijia Wang 2022-12-29 10:29:26 +01:00
parent 0ad5b19765
commit 6463ec06e3
3 changed files with 17 additions and 1 deletions

View file

@ -0,0 +1,14 @@
{ callPackage, fetchurl, fetchpatch, ... } @ args:
callPackage ./generic.nix (args // rec {
version = "1.81.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_81_0.html
sha256 = "71feeed900fbccca04a3b4f2f84a7c217186f28a940ed8b7ed4725986baf99fa";
};
})

View file

@ -33,4 +33,5 @@ in {
boost178 = makeBoost ./1.78.nix;
boost179 = makeBoost ./1.79.nix;
boost180 = makeBoost ./1.80.nix;
boost181 = makeBoost ./1.81.nix;
}

View file

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