summaryrefslogtreecommitdiff
path: root/pkgs/development/ocaml-modules/paf/cohttp.nix
blob: 53fcce10f58406df27b9ad02455afb6d9dde60f9 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
  buildDunePackage,
  paf,
  cohttp-lwt,
  domain-name,
  h1,
  ipaddr,
  alcotest-lwt,
  fmt,
  logs,
  mirage-crypto-rng,
  tcpip,
  uri,
  lwt,
  astring,
}:

buildDunePackage {
  pname = "paf-cohttp";

  inherit (paf)
    version
    src
    ;

  propagatedBuildInputs = [
    paf
    cohttp-lwt
    domain-name
    h1
    ipaddr
  ];

  doCheck = true;
  checkInputs = [
    alcotest-lwt
    fmt
    logs
    mirage-crypto-rng
    tcpip
    uri
    lwt
    astring
  ];

  __darwinAllowLocalNetworking = true;

  meta = paf.meta // {
    description = "CoHTTP client with its HTTP/AF implementation";
  };
}