mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
Merge pull request #172708 from centromere/boost-1.79
boost179: init at 1.79.0
This commit is contained in:
commit
d9cf5dc259
3 changed files with 16 additions and 0 deletions
14
pkgs/development/libraries/boost/1.79.nix
Normal file
14
pkgs/development/libraries/boost/1.79.nix
Normal file
|
@ -0,0 +1,14 @@
|
|||
{ callPackage, fetchurl, fetchpatch, ... } @ args:
|
||||
|
||||
callPackage ./generic.nix (args // rec {
|
||||
version = "1.79.0";
|
||||
|
||||
src = fetchurl {
|
||||
urls = [
|
||||
"mirror://sourceforge/boost/boost_${builtins.replaceStrings ["."] ["_"] version}.tar.bz2"
|
||||
"https://dl.bintray.com/boostorg/release/${version}/source/boost_${builtins.replaceStrings ["."] ["_"] version}.tar.bz2"
|
||||
];
|
||||
# SHA256 from http://www.boost.org/users/history/version_1_79_0.html
|
||||
sha256 = "475d589d51a7f8b3ba2ba4eda022b170e562ca3b760ee922c146b6c65856ef39";
|
||||
};
|
||||
})
|
|
@ -46,4 +46,5 @@ in {
|
|||
boost175 = makeBoost ./1.75.nix;
|
||||
boost177 = makeBoost ./1.77.nix;
|
||||
boost178 = makeBoost ./1.78.nix;
|
||||
boost179 = makeBoost ./1.79.nix;
|
||||
}
|
||||
|
|
|
@ -16700,6 +16700,7 @@ with pkgs;
|
|||
boost175
|
||||
boost177
|
||||
boost178
|
||||
boost179
|
||||
;
|
||||
|
||||
boost15x = boost159;
|
||||
|
|
Loading…
Reference in a new issue