2020-06-25 22:22:21 +01:00
|
|
|
{ stdenv, buildDunePackage, ppx_sexp_conv, conduit, ocaml_lwt, sexplib }:
|
2017-08-27 20:00:55 +01:00
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
buildDunePackage {
|
2018-11-05 10:21:46 +00:00
|
|
|
pname = "conduit-lwt";
|
2020-06-25 22:22:21 +01:00
|
|
|
inherit (conduit) version src minimumOCamlVersion;
|
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
|
|
|
|
2020-06-25 22:22:21 +01:00
|
|
|
propagatedBuildInputs = [ conduit ocaml_lwt sexplib ];
|
|
|
|
|
|
|
|
meta = conduit.meta // {
|
|
|
|
description = "A network connection establishment library for Lwt";
|
|
|
|
};
|
2017-08-27 20:00:55 +01:00
|
|
|
}
|