lol

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

authored by

Ulrik Strid and committed by
GitHub
ccd96f46 19f75b4d

+24
+23
pkgs/development/ocaml-modules/gluten/async.nix
··· 1 + { 2 + buildDunePackage, 3 + gluten, 4 + async, 5 + faraday-async, 6 + core, 7 + }: 8 + 9 + buildDunePackage { 10 + pname = "gluten-async"; 11 + inherit (gluten) src version; 12 + 13 + propagatedBuildInputs = [ 14 + gluten 15 + async 16 + faraday-async 17 + core 18 + ]; 19 + 20 + meta = gluten.meta // { 21 + description = "Async support for gluten"; 22 + }; 23 + }
+1
pkgs/top-level/ocaml-packages.nix
··· 627 627 gluon = callPackage ../development/ocaml-modules/gluon { }; 628 628 629 629 gluten = callPackage ../development/ocaml-modules/gluten { }; 630 + gluten-async = callPackage ../development/ocaml-modules/gluten/async.nix { }; 630 631 gluten-eio = callPackage ../development/ocaml-modules/gluten/eio.nix { }; 631 632 gluten-lwt = callPackage ../development/ocaml-modules/gluten/lwt.nix { }; 632 633 gluten-lwt-unix = callPackage ../development/ocaml-modules/gluten/lwt-unix.nix { };