summaryrefslogtreecommitdiffstats
path: root/pkgs/development/ocaml-modules/httpun/lwt.nix
blob: c4c671a8c4e63eca8fd3949507db081c16d0d98a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
  buildDunePackage,
  httpun,
  lwt,
  gluten,
  gluten-lwt,
}:

buildDunePackage {
  pname = "httpun-lwt";

  inherit (httpun) version src;

  propagatedBuildInputs = [
    gluten
    gluten-lwt
    httpun
    lwt
  ];

  meta = httpun.meta // {
    description = "Lwt support for httpun";
  };
}