about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/resto/cohttp.nix
blob: f495cadbf48fa850b159bd0d59a14806baf59cd7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ buildDunePackage, resto, resto-directory, cohttp-lwt }:

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

  propagatedBuildInputs = [
    resto
    resto-directory
    cohttp-lwt
  ];
}