boost185: init at 1.85.0

Release notes: https://www.boost.org/users/history/version_1_85_0.html
This commit is contained in:
Alexis Hildebrandt 2024-04-16 11:19:27 +02:00
parent 47f6e1ae8b
commit 1c3fc9cb29
3 changed files with 16 additions and 0 deletions

View File

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

View File

@ -25,4 +25,5 @@ in {
boost182 = makeBoost ./1.82.nix;
boost183 = makeBoost ./1.83.nix;
boost184 = makeBoost ./1.84.nix;
boost185 = makeBoost ./1.85.nix;
}

View File

@ -20342,6 +20342,7 @@ with pkgs;
boost182
boost183
boost184
boost185
;
boost = boost181;