depot/third_party/nixpkgs/pkgs/development/ocaml-modules/httpaf/lwt-unix.nix
Default email a3d4720129 Project import generated by Copybara.
GitOrigin-RevId: e182da8622a354d44c39b3d7a542dc12cd7baa5f
2022-12-28 22:21:41 +01:00

22 lines
348 B
Nix

{ 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";
};
}