nixVersions.nix_2_26: Use default boost package

This commit is contained in:
Robert Hensing
2025-02-09 20:58:07 +01:00
parent 430a6df76f
commit 3cbcec03f2
@@ -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;