ocamlPackages.dream-httpaf: init at 1.0.0-alpha8

This commit is contained in:
Vincent Laporte
2025-02-12 03:55:59 +01:00
committed by Vincent Laporte
parent dab601686d
commit cd5ff2ed4f
2 changed files with 25 additions and 0 deletions
@@ -0,0 +1,23 @@
{
lib,
buildDunePackage,
dream-pure,
lwt_ppx,
httpun-ws,
}:
buildDunePackage {
pname = "dream-httpaf";
inherit (dream-pure) version src;
buildInputs = [ lwt_ppx ];
propagatedBuildInputs = [
dream-pure
httpun-ws
];
meta = dream-pure.meta // {
description = "Shared http/af stack for Dream (server) and Hyper (client)";
};
}
+2
View File
@@ -383,6 +383,8 @@ let
dot-merlin-reader = callPackage ../development/tools/ocaml/merlin/dot-merlin-reader.nix { };
dream-httpaf = callPackage ../development/ocaml-modules/dream/httpaf.nix { };
dream-pure = callPackage ../development/ocaml-modules/dream/pure.nix { };
dscheck = callPackage ../development/ocaml-modules/dscheck { };