From 370f49812ee87e94240674a5f3c180427dd84138 Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Fri, 12 Dec 2025 21:06:34 +0100 Subject: [PATCH] ocamlPackages.dream-html: disable for OCaml < 5.3 --- pkgs/development/ocaml-modules/dream-html/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/ocaml-modules/dream-html/default.nix b/pkgs/development/ocaml-modules/dream-html/default.nix index d46990d44847..c5bdb34013a4 100644 --- a/pkgs/development/ocaml-modules/dream-html/default.nix +++ b/pkgs/development/ocaml-modules/dream-html/default.nix @@ -9,6 +9,8 @@ buildDunePackage { pname = "dream-html"; inherit (pure-html) src version meta; + minimalOCamlVersion = "5.3"; + buildInputs = [ ppxlib ];