diff --git a/pkgs/development/ocaml-modules/gluten/lwt-unix.nix b/pkgs/development/ocaml-modules/gluten/lwt-unix.nix new file mode 100644 index 000000000000..f3986b051355 --- /dev/null +++ b/pkgs/development/ocaml-modules/gluten/lwt-unix.nix @@ -0,0 +1,17 @@ +{ buildDunePackage +, faraday-lwt-unix +, gluten +, gluten-lwt +, lwt_ssl +}: + +buildDunePackage rec { + pname = "gluten-lwt-unix"; + inherit (gluten) doCheck meta src useDune2 version; + + propagatedBuildInputs = [ + faraday-lwt-unix + gluten-lwt + lwt_ssl + ]; +} diff --git a/pkgs/top-level/ocaml-packages.nix b/pkgs/top-level/ocaml-packages.nix index 8018e30b21cc..c6bf7c9dfb81 100644 --- a/pkgs/top-level/ocaml-packages.nix +++ b/pkgs/top-level/ocaml-packages.nix @@ -421,6 +421,7 @@ let gluten = callPackage ../development/ocaml-modules/gluten { }; gluten-lwt = callPackage ../development/ocaml-modules/gluten/lwt.nix { }; + gluten-lwt-unix = callPackage ../development/ocaml-modules/gluten/lwt-unix.nix { }; gmap = callPackage ../development/ocaml-modules/gmap { };