From 464b9d0b9dd12aa22f448b5d799eec5f24c6da58 Mon Sep 17 00:00:00 2001 From: Michael Daniels Date: Wed, 11 Feb 2026 19:53:29 -0500 Subject: [PATCH] ocaml: fix formatting --- pkgs/development/compilers/ocaml/generic.nix | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/pkgs/development/compilers/ocaml/generic.nix b/pkgs/development/compilers/ocaml/generic.nix index cfca2e9393a5..d074173a8143 100644 --- a/pkgs/development/compilers/ocaml/generic.nix +++ b/pkgs/development/compilers/ocaml/generic.nix @@ -93,9 +93,13 @@ stdenv.mkDerivation ( patches = map fetchpatch' patches; # https://github.com/ocaml/ocaml/issues/14543 - postPatch = if stdenv.cc.isClang then '' - rm testsuite/tests/basic/trigraph.ml - '' else null; + postPatch = + if stdenv.cc.isClang then + '' + rm testsuite/tests/basic/trigraph.ml + '' + else + null; strictDeps = true;