Unverified Commit 9774bb59 authored by Doron Behar's avatar Doron Behar Committed by GitHub
Browse files

boost190: init at 1.90.0 (#484767)

parents e5c27660 702146a1
Loading
Loading
Loading
Loading
+19 −0
Original line number Diff line number Diff line
{ callPackage, fetchurl, ... }@args:

callPackage ./generic.nix (
  args
  // rec {
    version = "1.90.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_90_0.html
      sha256 = "49551aff3b22cbc5c5a9ed3dbc92f0e23ea50a0f7325b0d198b705e8ee3fc305";
    };
  }
)
+1 −0
Original line number Diff line number Diff line
@@ -31,4 +31,5 @@ in
  boost187 = makeBoost ./1.87.nix;
  boost188 = makeBoost ./1.88.nix;
  boost189 = makeBoost ./1.89.nix;
  boost190 = makeBoost ./1.90.nix;
}
+1 −0
Original line number Diff line number Diff line
@@ -6478,6 +6478,7 @@ with pkgs;
    boost187
    boost188
    boost189
    boost190
    ;

  boost = boost187;