about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/resto/cohttp-self-serving-client.nix
blob: fac4ce7422ac1d67e63f0d3dcb060288bb374f77 (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
26
27
28
{ lib
, buildDunePackage
, resto
, resto-directory
, resto-acl
, resto-cohttp
, resto-cohttp-client
, resto-cohttp-server
, uri
, lwt
}:

buildDunePackage {
  pname = "resto-cohttp-self-serving-client";
  inherit (resto) src version meta doCheck;
  duneVersion = "3";

  propagatedBuildInputs = [
    resto
    resto-directory
    resto-acl
    resto-cohttp
    resto-cohttp-client
    resto-cohttp-server
    uri
    lwt
  ];
}