Files
2025-12-27 17:40:16 +07:00

22 lines
318 B
Nix

{
buildDunePackage,
cohttp,
ppx_expect,
}:
buildDunePackage {
pname = "http";
inherit (cohttp)
version
src
;
minimalOCamlVersion = "5.1";
propagatedBuildInputs = [ ppx_expect ];
meta = cohttp.meta // {
description = "CoHTTP implementation using the Lwt concurrency library";
};
}