double-conversion: backport patches for CMake 4

This commit is contained in:
Emily
2025-09-19 16:29:10 +01:00
parent fc90fab71c
commit c4044316e7
@@ -2,6 +2,7 @@
stdenv,
lib,
fetchFromGitHub,
fetchpatch,
cmake,
enableStatic ? stdenv.hostPlatform.isStatic,
}:
@@ -17,6 +18,20 @@ stdenv.mkDerivation rec {
sha256 = "sha256-M80H+azCzQYa4/gBLWv5GNNhEuHsH7LbJ/ajwmACnrM=";
};
patches = [
# Fix the build with CMake 4.
(fetchpatch {
name = "double-conversion-fix-cmake-4-1.patch";
url = "https://github.com/google/double-conversion/commit/101e1ba89dc41ceb75090831da97c43a76cd2906.patch";
hash = "sha256-VRmuNXdzt/I+gWbz5mwWkx5IGn8Vsl9WkdwRsuwZdkU=";
})
(fetchpatch {
name = "double-conversion-fix-cmake-4-2.patch";
url = "https://github.com/google/double-conversion/commit/0604b4c18815aadcf7f4b78dfa6bfcb91a634ed7.patch";
hash = "sha256-cJBp1ou1O/bMQ/7kvcX52dWbUdhmPfQ9aWmEhQdyhis=";
})
];
nativeBuildInputs = [ cmake ];
cmakeFlags = lib.optional (!enableStatic) "-DBUILD_SHARED_LIBS=ON";