nixpkgs/pkgs/development/ocaml-modules/paf/cohttp.nix
2022-12-26 07:46:03 +01:00

54 lines
635 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
;
duneVersion = "3";
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";
};
}