ocamlPackages.conduit: use dune 3

authored by Vincent Laporte and committed by Vincent Laporte ebe4402d d3491557

+7 -1
+2
pkgs/development/ocaml-modules/conduit/async.nix
··· 9 9 src 10 10 ; 11 11 12 + duneVersion = "3"; 13 + 12 14 buildInputs = [ ppx_sexp_conv ppx_here ]; 13 15 14 16 propagatedBuildInputs = [
+2 -1
pkgs/development/ocaml-modules/conduit/default.nix
··· 7 7 pname = "conduit"; 8 8 version = "6.1.0"; 9 9 10 - minimalOCamlVersion = "4.03"; 10 + minimalOCamlVersion = "4.08"; 11 + duneVersion = "3"; 11 12 12 13 src = fetchurl { 13 14 url = "https://github.com/mirage/ocaml-conduit/releases/download/v${version}/conduit-${version}.tbz";
+1
pkgs/development/ocaml-modules/conduit/lwt-unix.nix
··· 6 6 buildDunePackage { 7 7 pname = "conduit-lwt-unix"; 8 8 inherit (conduit-lwt) version src; 9 + duneVersion = "3"; 9 10 10 11 buildInputs = [ ppx_sexp_conv ]; 11 12
+1
pkgs/development/ocaml-modules/conduit/lwt.nix
··· 3 3 buildDunePackage { 4 4 pname = "conduit-lwt"; 5 5 inherit (conduit) version src; 6 + duneVersion = "3"; 6 7 7 8 buildInputs = [ ppx_sexp_conv ]; 8 9
+1
pkgs/development/ocaml-modules/conduit/mirage.nix
··· 9 9 pname = "conduit-mirage"; 10 10 11 11 inherit (conduit-lwt) version src; 12 + duneVersion = "3"; 12 13 13 14 nativeBuildInputs = [ ppx_sexp_conv ]; 14 15