1{
2 buildDunePackage,
3 httpun-types,
4 angstrom,
5 bigstringaf,
6 faraday,
7 alcotest,
8}:
9
10buildDunePackage {
11 pname = "httpun";
12
13 inherit (httpun-types) src version;
14
15 propagatedBuildInputs = [
16 angstrom
17 bigstringaf
18 faraday
19 httpun-types
20 ];
21
22 doCheck = true;
23 checkInputs = [ alcotest ];
24
25 meta = httpun-types.meta // {
26 description = "High-performance, memory-efficient, and scalable HTTP library for OCaml";
27 };
28}