about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/resto/cohttp.nix
blob: c29e589057c26ec6883c13fceef198e58e7e57ad (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 useDune2 doCheck;

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