about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/webmachine
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2023-01-09 10:34:16 +0100
committerVincent Laporte <vbgl@users.noreply.github.com>2023-01-12 17:56:25 +0100
commit389bbb0c8478a7c30713e822d468004a108cb7cd (patch)
treee3612e688ac664591521a6ced56679dc047e7156 /pkgs/development/ocaml-modules/webmachine
parent5f73c562d0ac5092fa31e073f7dc2a26bb48587c (diff)
ocamlPackages.webmachine: use dune 3
Diffstat (limited to 'pkgs/development/ocaml-modules/webmachine')
-rw-r--r--pkgs/development/ocaml-modules/webmachine/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/ocaml-modules/webmachine/default.nix b/pkgs/development/ocaml-modules/webmachine/default.nix
index c7ad92efe7685..9f8749cac9fd3 100644
--- a/pkgs/development/ocaml-modules/webmachine/default.nix
+++ b/pkgs/development/ocaml-modules/webmachine/default.nix
@@ -6,9 +6,9 @@
 buildDunePackage rec {
   pname = "webmachine";
   version = "0.7.0";
-  useDune2 = true;
+  duneVersion = "3";
 
-  minimumOCamlVersion = "4.04";
+  minimalOCamlVersion = "4.03";
 
   src = fetchFromGitHub {
     owner = "inhabitedtype";
@@ -24,7 +24,7 @@ buildDunePackage rec {
   doCheck = true;
 
   meta = {
-    inherit (src.meta) homepage;
+    homepage = "https://github.com/inhabitedtype/ocaml-webmachine";
     license = lib.licenses.bsd3;
     description = "A REST toolkit for OCaml";
     maintainers = [ lib.maintainers.vbgl ];