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

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

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