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
|
{
lib,
fetchurl,
buildDunePackage,
digestif,
domain-name,
fmt,
logs,
kdf,
mirage-crypto,
mirage-crypto-ec,
mirage-crypto-pk,
mirage-crypto-rng,
ohex,
ptime,
x509,
ipaddr,
alcotest,
ounit2,
}:
buildDunePackage (finalAttrs: {
pname = "tls";
version = "2.1.2";
src = fetchurl {
url = "https://github.com/mirleft/ocaml-tls/releases/download/v${finalAttrs.version}/tls-${finalAttrs.version}.tbz";
hash = "sha256-1RlAWHvOlHXJd8WWkEyBedzXhNnvbdmv4+Y0zKlAyfM=";
};
propagatedBuildInputs = [
digestif
domain-name
fmt
ipaddr
kdf
logs
mirage-crypto
mirage-crypto-ec
mirage-crypto-pk
mirage-crypto-rng
ohex
ptime
x509
];
doCheck = true;
checkInputs = [
alcotest
ounit2
];
meta = {
homepage = "https://github.com/mirleft/ocaml-tls";
description = "TLS in pure OCaml";
license = lib.licenses.bsd2;
maintainers = with lib.maintainers; [ sternenseemann ];
};
})
|