boost184: init at 1.84.0
This commit is contained in:
parent
8e23dec5ac
commit
045d203df8
14
pkgs/development/libraries/boost/1.84.nix
Normal file
14
pkgs/development/libraries/boost/1.84.nix
Normal file
@ -0,0 +1,14 @@
|
||||
{ callPackage, fetchurl, fetchpatch, ... } @ args:
|
||||
|
||||
callPackage ./generic.nix (args // rec {
|
||||
version = "1.84.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_84_0.html
|
||||
sha256 = "cc4b893acf645c9d4b698e9a0f08ca8846aa5d6c68275c14c3e7949c24109454";
|
||||
};
|
||||
})
|
@ -24,4 +24,5 @@ in {
|
||||
boost181 = makeBoost ./1.81.nix;
|
||||
boost182 = makeBoost ./1.82.nix;
|
||||
boost183 = makeBoost ./1.83.nix;
|
||||
boost184 = makeBoost ./1.84.nix;
|
||||
}
|
||||
|
@ -20698,6 +20698,7 @@ with pkgs;
|
||||
boost181
|
||||
boost182
|
||||
boost183
|
||||
boost184
|
||||
;
|
||||
|
||||
boost = boost181;
|
||||
|
Loading…
Reference in New Issue
Block a user