ocaml: fix formatting

This commit is contained in:
Michael Daniels
2026-02-11 19:53:29 -05:00
parent f9c71cebca
commit 464b9d0b9d
+7 -3
View File
@@ -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;