boost185: init at 1.85.0
Release notes: https://www.boost.org/users/history/version_1_85_0.html
This commit is contained in:
parent
47f6e1ae8b
commit
1c3fc9cb29
14
pkgs/development/libraries/boost/1.85.nix
Normal file
14
pkgs/development/libraries/boost/1.85.nix
Normal 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";
|
||||
};
|
||||
})
|
@ -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;
|
||||
}
|
||||
|
@ -20342,6 +20342,7 @@ with pkgs;
|
||||
boost182
|
||||
boost183
|
||||
boost184
|
||||
boost185
|
||||
;
|
||||
|
||||
boost = boost181;
|
||||
|
Loading…
Reference in New Issue
Block a user