about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/httpaf/lwt-unix.nix
blob: 9b78d7bf6401b1860f958a82202f5aa9f7ba6d88 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ lib, buildDunePackage
, httpaf
, faraday-lwt-unix
, lwt
}:

buildDunePackage {
  pname = "httpaf-lwt-unix";
  inherit (httpaf) version src;
  duneVersion = "3";
  minimalOCamlVersion = "4.08";

  propagatedBuildInputs = [
    faraday-lwt-unix
    httpaf
    lwt
  ];

  meta = httpaf.meta // {
    description = "Lwt support for http/af";
  };
}