2018-11-05 10:21:46 +00:00
|
|
|
{ stdenv, buildDunePackage, ppx_sexp_conv, conduit, ocaml_lwt }:
|
2017-08-27 20:00:55 +01:00
|
|
|
|
|
|
|
if !stdenv.lib.versionAtLeast conduit.version "1.0"
|
|
|
|
then conduit
|
|
|
|
else
|
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
buildDunePackage {
|
2018-11-05 10:21:46 +00:00
|
|
|
pname = "conduit-lwt";
|
|
|
|
inherit (conduit) version src meta;
|
2017-08-27 20:00:55 +01:00
|
|
|
|
2018-11-05 10:21:46 +00:00
|
|
|
buildInputs = [ ppx_sexp_conv ];
|
2017-08-27 20:00:55 +01:00
|
|
|
|
2018-09-28 16:28:36 +01:00
|
|
|
propagatedBuildInputs = [ conduit ocaml_lwt ];
|
2017-08-27 20:00:55 +01:00
|
|
|
}
|