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

19 lines
261 B
Nix

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