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, cohttp, lwt3, uri, ppx_sexp_conv }:
{ stdenv, ocaml, findlib, dune, cohttp, ocaml_lwt, uri, ppx_sexp_conv }:
if !stdenv.lib.versionAtLeast cohttp.version "0.99"
then cohttp
@@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
buildInputs = [ ocaml findlib dune uri ppx_sexp_conv ];
propagatedBuildInputs = [ cohttp lwt3 ];
propagatedBuildInputs = [ cohttp ocaml_lwt ];
buildPhase = "dune build -p cohttp-lwt";
}