nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 buildDunePackage,
3 crowbar,
4 hxd,
5 miou,
6 mirage-crypto-rng-miou-unix,
7 ohex,
8 ptime,
9 rresult,
10 tls,
11 x509,
12}:
13
14buildDunePackage {
15 pname = "tls-miou-unix";
16 inherit (tls) src version;
17
18 propagatedBuildInputs = [
19 miou
20 tls
21 x509
22 ];
23
24 doCheck = true;
25 checkInputs = [
26 crowbar
27 hxd
28 mirage-crypto-rng-miou-unix
29 ohex
30 ptime
31 rresult
32 ];
33
34 meta = tls.meta // {
35 description = "Transport Layer Security purely in OCaml, Miou+Unix layer";
36 };
37}