ocamlPackages.httpaf-lwt-unix: init at 0.7.1

This commit is contained in:
Vincent Laporte 2022-12-20 08:42:31 +01:00 committed by Vincent Laporte
parent b9c1fc6961
commit b169e34beb
2 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,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";
};
}

View file

@ -610,6 +610,8 @@ let
httpaf = callPackage ../development/ocaml-modules/httpaf { };
httpaf-lwt-unix = callPackage ../development/ocaml-modules/httpaf/lwt-unix.nix { };
index = callPackage ../development/ocaml-modules/index { };
inifiles = callPackage ../development/ocaml-modules/inifiles { };