ocamlPackages.httpun-ws-lwt: init at 0.2.0

r17x 18a8d8b4 73204a5d

Changed files
+28
pkgs
development
ocaml-modules
httpun-ws
top-level
+27
pkgs/development/ocaml-modules/httpun-ws/lwt.nix
···
+
{
+
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
pkgs/top-level/ocaml-packages.nix
···
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 ###