ocamlPackages.httpun-ws-lwt: init at 0.2.0

This commit is contained in:
r17x
2024-12-21 05:48:02 +07:00
parent 73204a5db5
commit 18a8d8b4d8
2 changed files with 28 additions and 0 deletions
@@ -0,0 +1,27 @@
{
lib,
buildDunePackage,
lwt,
digestif,
httpun-ws,
gluten-lwt,
}:
buildDunePackage {
pname = "httpun-ws-lwt";
inherit (httpun-ws) src version;
propagatedBuildInputs = [
httpun-ws
lwt
digestif
gluten-lwt
];
doCheck = true;
meta = httpun-ws.meta // {
description = "Lwt support for httpun-ws";
};
}
+1
View File
@@ -705,6 +705,7 @@ let
httpun-ws = callPackage ../development/ocaml-modules/httpun-ws { };
httpun-ws-lwt = callPackage ../development/ocaml-modules/httpun-ws/lwt.nix { };
hxd = callPackage ../development/ocaml-modules/hxd { };
### I ###