nixpkgs/pkgs/development/ocaml-modules/cohttp/server-lwt-unix.nix
Volker Diels-Grabsch 738de9c8cc ocamlPackages.cohttp-server-lwt-unix: init at 6.2.1
(cherry picked from commit 488d294af1)
2026-06-30 13:02:26 +00:00

24 lines
376 B
Nix

{
buildDunePackage,
cohttp,
cohttp-lwt-unix,
http,
lwt,
}:
buildDunePackage (finalAttrs: {
pname = "cohttp-server-lwt-unix";
inherit (cohttp) version src;
propagatedBuildInputs = [
http
lwt
];
checkInputs = [ cohttp-lwt-unix ];
doCheck = true;
meta = cohttp.meta // {
description = "Lightweight Cohttp + Lwt based HTTP server";
};
})