Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

ocamlPackages.dream-httpaf: init at 1.0.0-alpha8

authored by Vincent Laporte and committed by Vincent Laporte cd5ff2ed dab60168

+25
+23
pkgs/development/ocaml-modules/dream/httpaf.nix
··· 1 + { 2 + lib, 3 + buildDunePackage, 4 + dream-pure, 5 + lwt_ppx, 6 + httpun-ws, 7 + }: 8 + 9 + buildDunePackage { 10 + pname = "dream-httpaf"; 11 + 12 + inherit (dream-pure) version src; 13 + 14 + buildInputs = [ lwt_ppx ]; 15 + propagatedBuildInputs = [ 16 + dream-pure 17 + httpun-ws 18 + ]; 19 + 20 + meta = dream-pure.meta // { 21 + description = "Shared http/af stack for Dream (server) and Hyper (client)"; 22 + }; 23 + }
+2
pkgs/top-level/ocaml-packages.nix
··· 383 383 384 384 dot-merlin-reader = callPackage ../development/tools/ocaml/merlin/dot-merlin-reader.nix { }; 385 385 386 + dream-httpaf = callPackage ../development/ocaml-modules/dream/httpaf.nix { }; 387 + 386 388 dream-pure = callPackage ../development/ocaml-modules/dream/pure.nix { }; 387 389 388 390 dscheck = callPackage ../development/ocaml-modules/dscheck { };