Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ buildDunePackage, ppx_sexp_conv, conduit, lwt, sexplib }:
2
3buildDunePackage {
4 pname = "conduit-lwt";
5 inherit (conduit) version src;
6 duneVersion = "3";
7
8 buildInputs = [ ppx_sexp_conv ];
9
10 propagatedBuildInputs = [ conduit lwt sexplib ];
11
12 meta = conduit.meta // {
13 description = "A network connection establishment library for Lwt";
14 };
15}