2022-06-30 05:29:12 +00:00
|
|
|
{ buildDunePackage, ppx_sexp_conv, conduit, lwt, sexplib }:
|
2017-08-27 19:00:55 +00:00
|
|
|
|
2019-08-13 21:52:01 +00:00
|
|
|
buildDunePackage {
|
2021-01-21 00:24:35 +00:00
|
|
|
pname = "conduit-lwt";
|
2022-06-30 05:29:12 +00:00
|
|
|
inherit (conduit) version src;
|
2023-01-09 09:34:27 +00:00
|
|
|
duneVersion = "3";
|
2017-08-27 19:00:55 +00:00
|
|
|
|
2021-01-21 00:24:35 +00:00
|
|
|
buildInputs = [ ppx_sexp_conv ];
|
2017-08-27 19:00:55 +00:00
|
|
|
|
2022-06-30 05:29:12 +00:00
|
|
|
propagatedBuildInputs = [ conduit lwt sexplib ];
|
2020-06-25 21:22:21 +00:00
|
|
|
|
2021-01-21 00:24:35 +00:00
|
|
|
meta = conduit.meta // {
|
|
|
|
description = "A network connection establishment library for Lwt";
|
|
|
|
};
|
2017-08-27 19:00:55 +00:00
|
|
|
}
|