Unverified Commit dec8f7b2 authored by kirillrdy's avatar kirillrdy Committed by GitHub
Browse files

Merge pull request #334800 from afh/init-boost186

boost186: init at 1.86.0
parents c76514f6 3d2d84cc
Loading
Loading
Loading
Loading
+19 −0
Original line number Diff line number Diff line
{ callPackage, fetchurl, ... }@args:

callPackage ./generic.nix (
  args
  // rec {
    version = "1.86.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_86_0.html
      sha256 = "1bed88e40401b2cb7a1f76d4bab499e352fa4d0c5f31c0dbae64e24d34d7513b";
    };
  }
)
+1 −0
Original line number Diff line number Diff line
@@ -26,4 +26,5 @@ in {
  boost183 = makeBoost ./1.83.nix;
  boost184 = makeBoost ./1.84.nix;
  boost185 = makeBoost ./1.85.nix;
  boost186 = makeBoost ./1.86.nix;
}
+1 −0
Original line number Diff line number Diff line
@@ -19592,6 +19592,7 @@ with pkgs;
    boost183
    boost184
    boost185
    boost186
  ;
  boost = boost181;