Unverified Commit 1a1d97e4 authored by dotlambda's avatar dotlambda Committed by GitHub
Browse files

nlohmann_json: make musl support patch unconditional (#445834)

parents d890b59d 45439ecf
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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