repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
insync: 3.9.3.60019 -> 3.9.4.60020 (#363380)
[NixPkgs.git]
/
pkgs
/
development
/
ocaml-modules
/
conduit
/
async.nix
blob
c883cf181c8eab054b4c95f3159805a6edbe7287
1
{
2
buildDunePackage,
3
async,
4
ppx_sexp_conv,
5
ppx_here,
6
uri,
7
conduit,
8
core,
9
ipaddr,
10
ipaddr-sexp,
11
sexplib0,
12
}:
13
14
buildDunePackage {
15
pname = "conduit-async";
16
inherit (conduit)
17
version
18
src
19
;
20
21
buildInputs = [
22
ppx_sexp_conv
23
ppx_here
24
];
25
26
propagatedBuildInputs = [
27
async
28
conduit
29
uri
30
ipaddr
31
ipaddr-sexp
32
core
33
sexplib0
34
];
35
36
meta = conduit.meta // {
37
description = "Network connection establishment library for Async";
38
};
39
}