blob: 13c7939f11f7a7d4c91364abbc2ac53b95524972 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
{
buildDunePackage,
async,
async_ssl ? null,
ppx_sexp_conv,
ppx_here,
uri,
conduit,
core,
ipaddr,
ipaddr-sexp,
sexplib0,
}:
buildDunePackage {
pname = "conduit-async";
inherit (conduit)
version
src
;
buildInputs = [
ppx_sexp_conv
ppx_here
];
propagatedBuildInputs = [
async
async_ssl
conduit
uri
ipaddr
ipaddr-sexp
core
sexplib0
];
meta = conduit.meta // {
description = "Network connection establishment library for Async";
};
}
|