mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-10 16:45:51 +03:00
Merge pull request #197032 from centromere/boost-1.80.0
This commit is contained in:
commit
8753025d8e
14
pkgs/development/libraries/boost/1.80.nix
Normal file
14
pkgs/development/libraries/boost/1.80.nix
Normal file
@ -0,0 +1,14 @@
|
||||
{ callPackage, fetchurl, fetchpatch, ... } @ args:
|
||||
|
||||
callPackage ./generic.nix (args // rec {
|
||||
version = "1.80.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_80_0.html
|
||||
sha256 = "1e19565d82e43bc59209a168f5ac899d3ba471d55c7610c677d4ccf2c9c500c0";
|
||||
};
|
||||
})
|
@ -32,4 +32,5 @@ in {
|
||||
boost177 = makeBoost ./1.77.nix;
|
||||
boost178 = makeBoost ./1.78.nix;
|
||||
boost179 = makeBoost ./1.79.nix;
|
||||
boost180 = makeBoost ./1.80.nix;
|
||||
}
|
||||
|
@ -18086,11 +18086,13 @@ with pkgs;
|
||||
boost177
|
||||
boost178
|
||||
boost179
|
||||
boost180
|
||||
;
|
||||
|
||||
boost15x = boost159;
|
||||
boost16x = boost169;
|
||||
boost17x = boost179;
|
||||
boost18x = boost180;
|
||||
boost = boost17x;
|
||||
|
||||
boost_process = callPackage ../development/libraries/boost-process { };
|
||||
|
Loading…
Reference in New Issue
Block a user