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