ocamlPackages.httpun-lwt: init at 0.2.0

This commit is contained in:
Vincent Laporte
2025-02-12 03:51:04 +01:00
committed by Vincent Laporte
parent 8a24fbd0f3
commit 9361081879
2 changed files with 26 additions and 0 deletions
@@ -0,0 +1,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";
};
}
+2
View File
@@ -711,6 +711,8 @@ let
httpun-eio = callPackage ../development/ocaml-modules/httpun/eio.nix { };
httpun-lwt = callPackage ../development/ocaml-modules/httpun/lwt.nix { };
httpun-types = callPackage ../development/ocaml-modules/httpun/types.nix { };
httpun-ws = callPackage ../development/ocaml-modules/httpun-ws { };