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
fluffychat: 1.22.1 -> 1.23.0 (#364091)
[NixPkgs.git]
/
pkgs
/
development
/
ocaml-modules
/
tls
/
async.nix
blob
906ec0b83b14286bf6150b7e0979da474c64d365
1
{
2
buildDunePackage,
3
tls,
4
async,
5
cstruct-async,
6
core,
7
mirage-crypto-rng-async,
8
}:
9
10
buildDunePackage rec {
11
pname = "tls-async";
12
13
inherit (tls) src version;
14
15
minimalOCamlVersion = "4.14";
16
17
doCheck = true;
18
19
propagatedBuildInputs = [
20
async
21
core
22
cstruct-async
23
mirage-crypto-rng-async
24
tls
25
];
26
27
meta = tls.meta // {
28
description = "Transport Layer Security purely in OCaml, Async layer";
29
};
30
}