ocamlPackages.httpun-lwt-unix: 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 9361081879
commit 8e1bf1897d
2 changed files with 22 additions and 0 deletions
@@ -0,0 +1,20 @@
{
buildDunePackage,
httpun-lwt,
gluten-lwt-unix,
}:
buildDunePackage {
pname = "httpun-lwt-unix";
inherit (httpun-lwt) version src;
propagatedBuildInputs = [
httpun-lwt
gluten-lwt-unix
];
meta = httpun-lwt.meta // {
description = "Lwt + Unix support for httpun";
};
}
+2
View File
@@ -713,6 +713,8 @@ let
httpun-lwt = callPackage ../development/ocaml-modules/httpun/lwt.nix { };
httpun-lwt-unix = callPackage ../development/ocaml-modules/httpun/lwt-unix.nix { };
httpun-types = callPackage ../development/ocaml-modules/httpun/types.nix { };
httpun-ws = callPackage ../development/ocaml-modules/httpun-ws { };