2020-07-18 16:06:22 +00:00
|
|
|
{ stdenv, buildDunePackage, ppx_sexp_conv, conduit, ocaml_lwt, sexplib }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
buildDunePackage {
|
|
|
|
pname = "conduit-lwt";
|
2020-11-30 08:33:03 +00:00
|
|
|
inherit (conduit) version src useDune2 minimumOCamlVersion;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
buildInputs = [ ppx_sexp_conv ];
|
|
|
|
|
2020-07-18 16:06:22 +00:00
|
|
|
propagatedBuildInputs = [ conduit ocaml_lwt sexplib ];
|
|
|
|
|
|
|
|
meta = conduit.meta // {
|
|
|
|
description = "A network connection establishment library for Lwt";
|
|
|
|
};
|
2020-04-24 23:36:52 +00:00
|
|
|
}
|