Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, buildDunePackage, async, async_ssl ? null, ppx_sexp_conv, ppx_here, uri, conduit
2, core, ipaddr, ipaddr-sexp, sexplib
3}:
4
5buildDunePackage {
6 pname = "conduit-async";
7 inherit (conduit)
8 version
9 src
10 ;
11
12 duneVersion = "3";
13
14 buildInputs = [ ppx_sexp_conv ppx_here ];
15
16 propagatedBuildInputs = [
17 async
18 async_ssl
19 conduit
20 uri
21 ipaddr
22 ipaddr-sexp
23 core
24 sexplib
25 ];
26
27 meta = conduit.meta // {
28 description = "A network connection establishment library for Async";
29 };
30}