mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 11:40:45 +00:00
Merge pull request #208210 from wegank/boost-181-init
This commit is contained in:
commit
1292c04563
14
pkgs/development/libraries/boost/1.81.nix
Normal file
14
pkgs/development/libraries/boost/1.81.nix
Normal 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";
|
||||
};
|
||||
})
|
|
@ -31,4 +31,5 @@ in {
|
|||
boost178 = makeBoost ./1.78.nix;
|
||||
boost179 = makeBoost ./1.79.nix;
|
||||
boost180 = makeBoost ./1.80.nix;
|
||||
boost181 = makeBoost ./1.81.nix;
|
||||
}
|
||||
|
|
|
@ -18724,11 +18724,12 @@ with pkgs;
|
|||
boost178
|
||||
boost179
|
||||
boost180
|
||||
boost181
|
||||
;
|
||||
|
||||
boost16x = boost169;
|
||||
boost17x = boost179;
|
||||
boost18x = boost180;
|
||||
boost18x = boost181;
|
||||
boost = boost17x;
|
||||
|
||||
boost_process = callPackage ../development/libraries/boost-process { };
|
||||
|
|
Loading…
Reference in a new issue