ocamlPackages.gluten-async: init at 0.5.2 (#366943)

This commit is contained in:
Ulrik Strid
2024-12-28 13:09:09 +01:00
committed by GitHub
2 changed files with 24 additions and 0 deletions
@@ -0,0 +1,23 @@
{
buildDunePackage,
gluten,
async,
faraday-async,
core,
}:
buildDunePackage {
pname = "gluten-async";
inherit (gluten) src version;
propagatedBuildInputs = [
gluten
async
faraday-async
core
];
meta = gluten.meta // {
description = "Async support for gluten";
};
}
+1
View File
@@ -627,6 +627,7 @@ let
gluon = callPackage ../development/ocaml-modules/gluon { };
gluten = callPackage ../development/ocaml-modules/gluten { };
gluten-async = callPackage ../development/ocaml-modules/gluten/async.nix { };
gluten-eio = callPackage ../development/ocaml-modules/gluten/eio.nix { };
gluten-lwt = callPackage ../development/ocaml-modules/gluten/lwt.nix { };
gluten-lwt-unix = callPackage ../development/ocaml-modules/gluten/lwt-unix.nix { };