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