mysql-shell-innovation: fix build

This commit is contained in:
Aaron Jheng
2025-10-15 11:18:07 +08:00
parent 40d75b2ab3
commit cb95077c89

View File

@@ -523,7 +523,7 @@ with pkgs;
protobuf = protobuf_25.override { protobuf = protobuf_25.override {
abseil-cpp = abseil-cpp_202407; abseil-cpp = abseil-cpp_202407;
}; };
stdenv = if stdenv.hostPlatform.isDarwin then llvmPackages_19.stdenv else stdenv; stdenv = if stdenv.cc.isClang then llvmPackages_19.stdenv else stdenv;
}; };
}) })
mysql-shell_8 mysql-shell_8
@@ -535,6 +535,7 @@ with pkgs;
protobuf = protobuf_25.override { protobuf = protobuf_25.override {
abseil-cpp = abseil-cpp_202407; abseil-cpp = abseil-cpp_202407;
}; };
stdenv = if stdenv.cc.isClang then llvmPackages_19.stdenv else stdenv;
}; };
# this is used by most `fetch*` functions # this is used by most `fetch*` functions