565589da39
ocamlPackages.{hpack,h2}: 0.8.0 → 0.9.0
51 lines
613 B
Nix
51 lines
613 B
Nix
{ lib
|
|
, 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
|
|
];
|
|
|
|
meta = paf.meta // {
|
|
description = "A CoHTTP client with its HTTP/AF implementation";
|
|
};
|
|
}
|