summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/resto
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2023-01-09 10:34:14 +0100
committerVincent Laporte <vbgl@users.noreply.github.com>2023-01-12 17:56:25 +0100
commit5f73c562d0ac5092fa31e073f7dc2a26bb48587c (patch)
tree600b559fe34f0e00b104f5e7812c47e289897e82 /pkgs/development/ocaml-modules/resto
parent373aa5e812a0b1a4dc61b1207a12e8cf33b48a0c (diff)
downloadnixpkgs-5f73c562d0ac5092fa31e073f7dc2a26bb48587c.tar
nixpkgs-5f73c562d0ac5092fa31e073f7dc2a26bb48587c.tar.gz
nixpkgs-5f73c562d0ac5092fa31e073f7dc2a26bb48587c.tar.bz2
nixpkgs-5f73c562d0ac5092fa31e073f7dc2a26bb48587c.tar.lz
nixpkgs-5f73c562d0ac5092fa31e073f7dc2a26bb48587c.tar.xz
nixpkgs-5f73c562d0ac5092fa31e073f7dc2a26bb48587c.tar.zst
nixpkgs-5f73c562d0ac5092fa31e073f7dc2a26bb48587c.zip
ocamlPackages.resto: use dune 3
Diffstat (limited to 'pkgs/development/ocaml-modules/resto')
-rw-r--r--pkgs/development/ocaml-modules/resto/acl.nix1
-rw-r--r--pkgs/development/ocaml-modules/resto/cohttp-client.nix1
-rw-r--r--pkgs/development/ocaml-modules/resto/cohttp-self-serving-client.nix1
-rw-r--r--pkgs/development/ocaml-modules/resto/cohttp-server.nix1
-rw-r--r--pkgs/development/ocaml-modules/resto/cohttp.nix1
-rw-r--r--pkgs/development/ocaml-modules/resto/default.nix1
-rw-r--r--pkgs/development/ocaml-modules/resto/directory.nix1
-rw-r--r--pkgs/development/ocaml-modules/resto/json.nix1
8 files changed, 8 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/resto/acl.nix b/pkgs/development/ocaml-modules/resto/acl.nix
index 0eed996289d..92a1b751ed5 100644
--- a/pkgs/development/ocaml-modules/resto/acl.nix
+++ b/pkgs/development/ocaml-modules/resto/acl.nix
@@ -5,6 +5,7 @@ buildDunePackage {
   inherit (resto) src version meta doCheck;
 
   minimalOCamlVersion = "4.10";
+  duneVersion = "3";
 
   propagatedBuildInputs = [
     resto
diff --git a/pkgs/development/ocaml-modules/resto/cohttp-client.nix b/pkgs/development/ocaml-modules/resto/cohttp-client.nix
index dd0db02cdd5..fe6dd6b506e 100644
--- a/pkgs/development/ocaml-modules/resto/cohttp-client.nix
+++ b/pkgs/development/ocaml-modules/resto/cohttp-client.nix
@@ -9,6 +9,7 @@
 buildDunePackage {
   pname = "resto-cohttp-client";
   inherit (resto) src version meta doCheck;
+  duneVersion = "3";
 
   propagatedBuildInputs = [
     resto
diff --git a/pkgs/development/ocaml-modules/resto/cohttp-self-serving-client.nix b/pkgs/development/ocaml-modules/resto/cohttp-self-serving-client.nix
index c01fb1db905..fac4ce7422a 100644
--- a/pkgs/development/ocaml-modules/resto/cohttp-self-serving-client.nix
+++ b/pkgs/development/ocaml-modules/resto/cohttp-self-serving-client.nix
@@ -13,6 +13,7 @@
 buildDunePackage {
   pname = "resto-cohttp-self-serving-client";
   inherit (resto) src version meta doCheck;
+  duneVersion = "3";
 
   propagatedBuildInputs = [
     resto
diff --git a/pkgs/development/ocaml-modules/resto/cohttp-server.nix b/pkgs/development/ocaml-modules/resto/cohttp-server.nix
index 29e18aa88b1..6347b8628b3 100644
--- a/pkgs/development/ocaml-modules/resto/cohttp-server.nix
+++ b/pkgs/development/ocaml-modules/resto/cohttp-server.nix
@@ -12,6 +12,7 @@
 buildDunePackage {
   pname = "resto-cohttp-server";
   inherit (resto) src version meta doCheck;
+  duneVersion = "3";
 
   propagatedBuildInputs = [
     resto
diff --git a/pkgs/development/ocaml-modules/resto/cohttp.nix b/pkgs/development/ocaml-modules/resto/cohttp.nix
index 4de70b1dfef..f495cadbf48 100644
--- a/pkgs/development/ocaml-modules/resto/cohttp.nix
+++ b/pkgs/development/ocaml-modules/resto/cohttp.nix
@@ -3,6 +3,7 @@
 buildDunePackage {
   pname = "resto-cohttp";
   inherit (resto) src version meta doCheck;
+  duneVersion = "3";
 
   propagatedBuildInputs = [
     resto
diff --git a/pkgs/development/ocaml-modules/resto/default.nix b/pkgs/development/ocaml-modules/resto/default.nix
index 03795e5e1cf..0d67ca94775 100644
--- a/pkgs/development/ocaml-modules/resto/default.nix
+++ b/pkgs/development/ocaml-modules/resto/default.nix
@@ -3,6 +3,7 @@
 buildDunePackage rec {
   pname = "resto";
   version = "1.0";
+  duneVersion = "3";
   src = fetchFromGitLab {
     owner = "nomadic-labs";
     repo = "resto";
diff --git a/pkgs/development/ocaml-modules/resto/directory.nix b/pkgs/development/ocaml-modules/resto/directory.nix
index 555ec590ffd..efbb7cb608e 100644
--- a/pkgs/development/ocaml-modules/resto/directory.nix
+++ b/pkgs/development/ocaml-modules/resto/directory.nix
@@ -3,6 +3,7 @@
 buildDunePackage {
   pname = "resto-directory";
   inherit (resto) src version meta doCheck;
+  duneVersion = "3";
 
   propagatedBuildInputs = [
     resto
diff --git a/pkgs/development/ocaml-modules/resto/json.nix b/pkgs/development/ocaml-modules/resto/json.nix
index dbb81fd35a6..c0f9b00d6ad 100644
--- a/pkgs/development/ocaml-modules/resto/json.nix
+++ b/pkgs/development/ocaml-modules/resto/json.nix
@@ -3,6 +3,7 @@
 buildDunePackage {
   pname = "resto-json";
   inherit (resto) src version meta doCheck;
+  duneVersion = "3";
 
   propagatedBuildInputs = [
     resto