nlohmann_json: make musl support patch unconditional (#445834)

This commit is contained in:
dotlambda
2025-09-24 10:11:24 -07:00
committed by GitHub
+1 -1
View File
@@ -24,7 +24,7 @@ stdenv.mkDerivation (finalAttrs: {
hash = "sha256-cECvDOLxgX7Q9R3IE86Hj9JJUxraDQvhoyPDF03B2CY=";
};
patches = lib.optionals stdenv.hostPlatform.isMusl [
patches = [
# Musl does not support LC_NUMERIC, causing a test failure.
# Turn the error into a warning to make the test succeed.
# https://github.com/nlohmann/json/pull/4770