nixpkgs/pkgs/development/ocaml-modules/resto/cohttp-server.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
413 B
Nix
Raw Normal View History

{
buildDunePackage,
resto,
resto-directory,
resto-acl,
resto-cohttp,
cohttp-lwt-unix,
conduit-lwt-unix,
lwt,
}:
buildDunePackage {
pname = "resto-cohttp-server";
2022-05-31 07:14:43 +00:00
inherit (resto)
src
version
meta
doCheck
;
2023-01-09 09:34:14 +00:00
duneVersion = "3";
propagatedBuildInputs = [
resto
resto-directory
resto-acl
resto-cohttp
cohttp-lwt-unix
conduit-lwt-unix
lwt
];
}