evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / ocaml-modules / httpaf / lwt-unix.nix
blob46490def6f8e0db9297de30a1b429bb4308f5d24
1 { buildDunePackage
2 , httpaf
3 , faraday-lwt-unix
4 , lwt
5 }:
7 buildDunePackage {
8   pname = "httpaf-lwt-unix";
9   inherit (httpaf) version src;
10   duneVersion = "3";
11   minimalOCamlVersion = "4.08";
13   propagatedBuildInputs = [
14     faraday-lwt-unix
15     httpaf
16     lwt
17   ];
19   meta = httpaf.meta // {
20     description = "Lwt support for http/af";
21   };