summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/resto/cohttp-server.nix
blob: 61a5d93e9fc3787573d820c1aabf8a5ff5d2d635 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ lib
, buildDunePackage
, resto
, resto-directory
, resto-acl
, resto-cohttp
, cohttp-lwt-unix
, conduit-lwt-unix
, lwt
}:

buildDunePackage {
  pname = "resto-cohttp-server";
  inherit (resto) src version meta useDune2 doCheck;

  propagatedBuildInputs = [
    resto
    resto-directory
    resto-acl
    resto-cohttp
    cohttp-lwt-unix
    conduit-lwt-unix
    lwt
  ];
}