···5959 "-DCMAKE_SKIP_BUILD_RPATH=OFF"
6060 ] ++ lib.optionals (stdenv.hostPlatform != stdenv.buildPlatform) [
6161 "-D_gRPC_PROTOBUF_PROTOC_EXECUTABLE=${buildPackages.protobuf}/bin/protoc"
6262- ] ++ lib.optionals
6363- ((stdenv.hostPlatform.useLLVM or false) && lib.versionOlder stdenv.cc.cc.version "11.0") [
6262+ ] ++ lib.optionals ((stdenv.hostPlatform.useLLVM or false) && lib.versionOlder stdenv.cc.cc.version "11.0") [
6463 # Needs to be compiled with -std=c++11 for clang < 11. Interestingly this is
6564 # only an issue with the useLLVM stdenv, not the darwin stdenv…
6665 # https://github.com/grpc/grpc/issues/26473#issuecomment-860885484
+6-1
pkgs/top-level/all-packages.nix
···31181311813118231182 or-tools = callPackage ../development/libraries/science/math/or-tools {
3118331183 python = python3;
3118431184- abseil-cpp = abseil-cpp.override { static = true; };
3118431184+ # or-tools builds with -std=c++17, so abseil-cpp must
3118531185+ # also be built that way
3118631186+ abseil-cpp = abseil-cpp.override {
3118731187+ static = true;
3118831188+ cxxStandard = "17";
3118931189+ };
3118531190 };
31186311913118731192 rubiks = callPackage ../development/libraries/science/math/rubiks { };