ocamlPackages.conduit: use dune 3

This commit is contained in:
Vincent Laporte
2023-01-12 17:56:25 +01:00
committed by Vincent Laporte
parent d3491557ef
commit ebe4402d0a
5 changed files with 7 additions and 1 deletions
@@ -9,6 +9,8 @@ buildDunePackage {
src
;
duneVersion = "3";
buildInputs = [ ppx_sexp_conv ppx_here ];
propagatedBuildInputs = [
@@ -7,7 +7,8 @@ buildDunePackage rec {
pname = "conduit";
version = "6.1.0";
minimalOCamlVersion = "4.03";
minimalOCamlVersion = "4.08";
duneVersion = "3";
src = fetchurl {
url = "https://github.com/mirage/ocaml-conduit/releases/download/v${version}/conduit-${version}.tbz";
@@ -6,6 +6,7 @@
buildDunePackage {
pname = "conduit-lwt-unix";
inherit (conduit-lwt) version src;
duneVersion = "3";
buildInputs = [ ppx_sexp_conv ];
@@ -3,6 +3,7 @@
buildDunePackage {
pname = "conduit-lwt";
inherit (conduit) version src;
duneVersion = "3";
buildInputs = [ ppx_sexp_conv ];
@@ -9,6 +9,7 @@ buildDunePackage {
pname = "conduit-mirage";
inherit (conduit-lwt) version src;
duneVersion = "3";
nativeBuildInputs = [ ppx_sexp_conv ];