Commit 3cbcec03 authored by Robert Hensing's avatar Robert Hensing
Browse files

nixVersions.nix_2_26: Use default boost package

parent 430a6df7
Loading
Loading
Loading
Loading
+0 −15
Original line number Diff line number Diff line
@@ -159,21 +159,6 @@ scope: {
    enableLargeConfig = true;
  };

  # TODO Hack until https://github.com/NixOS/nixpkgs/issues/45462 is fixed.
  boost =
    (pkgs.boost.override {
      extraB2Args = [
        "--with-container"
        "--with-context"
        "--with-coroutine"
      ];
    }).overrideAttrs
      (old: {
        # Need to remove `--with-*` to use `--with-libraries=...`
        buildPhase = lib.replaceStrings [ "--without-python" ] [ "" ] old.buildPhase;
        installPhase = lib.replaceStrings [ "--without-python" ] [ "" ] old.installPhase;
      });

  libgit2 = libgit2-thin-packfile;

  inherit resolvePath filesetToSource;