blob: bcbc122bda5ff4be35dfb67105ee4900b4d4823f (
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
|
{
buildDunePackage,
httpun-types,
angstrom,
bigstringaf,
faraday,
alcotest,
}:
buildDunePackage {
pname = "httpun";
inherit (httpun-types) src version;
propagatedBuildInputs = [
angstrom
bigstringaf
faraday
httpun-types
];
doCheck = true;
checkInputs = [ alcotest ];
meta = httpun-types.meta // {
description = "High-performance, memory-efficient, and scalable HTTP library for OCaml";
};
}
|