mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
1f92ee7ad7
ocamlPackages.conduit: 6.2.1 → 6.2.3 ocamlPackages.dns: 7.0.1 → 8.0.0 ocamlPackages.git: 3.14.0 → 3.16.1 ocamlPackages.http-mirage-client: 0.0.5 → 0.0.6 ocamlPackages.mimic: 0.0.6 → 0.0.9 ocamlPackages.mirage-flow: 3.0.0 → 4.0.0 ocamlPackages.mirage-vnetif: 0.6.0 → 0.6.2 ocamlPackages.paf: 0.5.0 → 0.6.0 ocamlPackages.tcpip: 8.0.0 → 8.1.0 ocamlPackages.vchan: 6.0.1 → 6.0.2
52 lines
647 B
Nix
52 lines
647 B
Nix
{ buildDunePackage
|
|
, paf
|
|
, cohttp-lwt
|
|
, domain-name
|
|
, httpaf
|
|
, ipaddr
|
|
, alcotest-lwt
|
|
, fmt
|
|
, logs
|
|
, mirage-crypto-rng
|
|
, mirage-time-unix
|
|
, tcpip
|
|
, uri
|
|
, lwt
|
|
, astring
|
|
}:
|
|
|
|
buildDunePackage {
|
|
pname = "paf-cohttp";
|
|
|
|
inherit (paf)
|
|
version
|
|
src
|
|
;
|
|
|
|
propagatedBuildInputs = [
|
|
paf
|
|
cohttp-lwt
|
|
domain-name
|
|
httpaf
|
|
ipaddr
|
|
];
|
|
|
|
doCheck = true;
|
|
checkInputs = [
|
|
alcotest-lwt
|
|
fmt
|
|
logs
|
|
mirage-crypto-rng
|
|
mirage-time-unix
|
|
tcpip
|
|
uri
|
|
lwt
|
|
astring
|
|
];
|
|
|
|
__darwinAllowLocalNetworking = true;
|
|
|
|
meta = paf.meta // {
|
|
description = "CoHTTP client with its HTTP/AF implementation";
|
|
};
|
|
}
|