Files
nixpkgs/pkgs/development/ocaml-modules/cohttp/top.nix
2026-08-07 11:19:07 +02:00

20 lines
317 B
Nix

{
buildDunePackage,
cohttp,
ppx_expect,
}:
buildDunePackage {
pname = "cohttp-top";
inherit (cohttp) version src;
propagatedBuildInputs = [ cohttp ];
doCheck = true;
checkInputs = [ ppx_expect ];
meta = cohttp.meta // {
description = "CoHTTP toplevel pretty printers for HTTP types";
};
}