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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
{
lib,
fetchurl,
buildDunePackage,
ocaml,
ppx_sexp_conv,
base64,
jsonm,
http,
logs,
re,
stringext,
ipaddr,
uri-sexp,
fmt,
alcotest,
crowbar,
ppx_expect,
}:
buildDunePackage (finalAttrs: {
pname = "cohttp";
version =
if lib.versionAtLeast ocaml.version "5.2" then
"6.3.0"
else if lib.versionAtLeast ocaml.version "4.13" then
"6.2.1"
else
"5.3.1";
src = fetchurl {
url = "https://github.com/mirage/ocaml-cohttp/releases/download/v${finalAttrs.version}/cohttp-${finalAttrs.version}.tbz";
hash =
{
"6.3.0" = "sha256-MRMPaKnwpc2NcbVfBCRW5tNb+LeranGrbXvX29tgeyQ=";
"6.2.1" = "sha256-ZQgCR3Y0QtHcPNkGeLgjO3mHcvA2rIHNHqreH11mpl8=";
"5.3.1" = "sha256-9eJz08Lyn/R71+Ftsj4fPWzQGkC+ACCJhbxDTIjUV2s=";
}
."${finalAttrs.version}";
};
postPatch = ''
substituteInPlace cohttp/src/dune --replace-warn 'bytes base64' 'base64'
'';
buildInputs = [
ppx_sexp_conv
]
++ lib.optionals (lib.versionOlder finalAttrs.version "6.0.0") [
jsonm
];
propagatedBuildInputs = [
base64
re
stringext
uri-sexp
]
++ lib.optionals (lib.versionAtLeast finalAttrs.version "6.0.0") [
http
ipaddr
logs
];
doCheck = true;
checkInputs = [
fmt
alcotest
]
++ [
(if lib.versionOlder finalAttrs.version "6.0.0" then crowbar else ppx_expect)
];
meta = {
description = "HTTP(S) library for Lwt, Async and Mirage";
license = lib.licenses.isc;
maintainers = [ lib.maintainers.vbgl ];
homepage = "https://github.com/mirage/ocaml-cohttp";
};
})
|