Merge pull request #161568 from wheelsandmetal/boost178-init

This commit is contained in:
Sandro
2022-03-31 14:02:19 +02:00
committed by GitHub
3 changed files with 17 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
{ callPackage, fetchurl, fetchpatch, ... } @ args:
callPackage ./generic.nix (args // rec {
version = "1.78.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_78_0.html
sha256 = "8681f175d4bdb26c52222665793eef08490d7758529330f98d3b29dd0735bccc";
};
})
@@ -45,4 +45,5 @@ in {
boost174 = makeBoost ./1.74.nix;
boost175 = makeBoost ./1.75.nix;
boost177 = makeBoost ./1.77.nix;
boost178 = makeBoost ./1.78.nix;
}
+1
View File
@@ -16383,6 +16383,7 @@ with pkgs;
boost174
boost175
boost177
boost178
;
boost15x = boost159;