dotnet: improve language coverage of passthru.tests for dotnet sdks (#370789)
[NixPkgs.git] / pkgs / development / ocaml-modules / paf / cohttp.nix
blob253b271e0e97d106247f55b1464f9ebfbfab6cc4
2   buildDunePackage,
3   paf,
4   cohttp-lwt,
5   domain-name,
6   httpaf,
7   ipaddr,
8   alcotest-lwt,
9   fmt,
10   logs,
11   mirage-crypto-rng,
12   mirage-time-unix,
13   tcpip,
14   uri,
15   lwt,
16   astring,
19 buildDunePackage {
20   pname = "paf-cohttp";
22   inherit (paf)
23     version
24     src
25     ;
27   propagatedBuildInputs = [
28     paf
29     cohttp-lwt
30     domain-name
31     httpaf
32     ipaddr
33   ];
35   doCheck = true;
36   checkInputs = [
37     alcotest-lwt
38     fmt
39     logs
40     mirage-crypto-rng
41     mirage-time-unix
42     tcpip
43     uri
44     lwt
45     astring
46   ];
48   __darwinAllowLocalNetworking = true;
50   meta = paf.meta // {
51     description = "CoHTTP client with its HTTP/AF implementation";
52   };