2022-07-14 12:49:19 +00:00
|
|
|
{ buildDunePackage, ppx_sexp_conv, conduit, lwt, sexplib }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
buildDunePackage {
|
2021-02-05 17:12:51 +00:00
|
|
|
pname = "conduit-lwt";
|
2022-07-14 12:49:19 +00:00
|
|
|
inherit (conduit) version src;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
buildInputs = [ ppx_sexp_conv ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2022-07-14 12:49:19 +00:00
|
|
|
propagatedBuildInputs = [ conduit lwt sexplib ];
|
2020-07-18 16:06:22 +00:00
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
meta = conduit.meta // {
|
|
|
|
description = "A network connection establishment library for Lwt";
|
|
|
|
};
|
2020-04-24 23:36:52 +00:00
|
|
|
}
|