ocamlPackages.ocaml_lwt: 3.3.0 -> 4.1.0

This commit is contained in:
Vincent Laporte
2018-09-28 15:28:36 +00:00
committed by Vincent Laporte
parent 4b1f2fb0b3
commit bdaedbe38c
8 changed files with 82 additions and 18 deletions

View File

@@ -1,4 +1,4 @@
{ stdenv, ocaml, findlib, dune, ppx_sexp_conv, conduit, lwt3 }:
{ stdenv, ocaml, findlib, dune, ppx_sexp_conv, conduit, ocaml_lwt }:
if !stdenv.lib.versionAtLeast conduit.version "1.0"
then conduit
@@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
buildInputs = [ ocaml findlib dune ppx_sexp_conv ];
propagatedBuildInputs = [ conduit lwt3 ];
propagatedBuildInputs = [ conduit ocaml_lwt ];
buildPhase = "dune build -p conduit-lwt";
}