about summary refs log tree commit diff
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2022-12-24 00:23:46 +0100
committerVincent Laporte <vbgl@users.noreply.github.com>2022-12-31 09:44:15 +0100
commitb2e47ddd5c4a19a531e3c8b5069f24309f2c2424 (patch)
treedcf24d20ea43a88e4675af19d0becd66456af894
parent9269a0e15385ce1a1b007b3c901499eb499549cc (diff)
ocamlPackages.ppx_tools: enable for OCaml 5 & use dune 3
-rw-r--r--pkgs/development/ocaml-modules/ppx_tools/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/ppx_tools/default.nix b/pkgs/development/ocaml-modules/ppx_tools/default.nix
index cc525d1d1e95b..d3af0ea154ea8 100644
--- a/pkgs/development/ocaml-modules/ppx_tools/default.nix
+++ b/pkgs/development/ocaml-modules/ppx_tools/default.nix
@@ -34,6 +34,7 @@ let param =
   "4.12" = v6_6;
   "4.13" = v6_6;
   "4.14" = v6_6;
+  "5.0" = v6_6;
 }.${ocaml.meta.branch};
 in
 
@@ -56,6 +57,7 @@ then
   buildDunePackage {
     inherit pname src meta;
     inherit (param) version buildInputs nativeBuildInputs;
+    duneVersion = "3";
 
     strictDeps = true;
   }