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