Commit 7e69dfd3 authored by Vincent Laporte's avatar Vincent Laporte Committed by Vincent Laporte
Browse files

ocamlPackages.httpun: init at 0.2.0

parent c4869164
Loading
Loading
Loading
Loading
+22 −0
Original line number Diff line number Diff line
{ buildDunePackage
, httpun-types
, angstrom
, bigstringaf
, faraday
, alcotest
}:

buildDunePackage {
  pname = "httpun";

  inherit (httpun-types) src version;

  propagatedBuildInputs = [ angstrom bigstringaf faraday httpun-types ];

  doCheck = true;
  checkInputs = [ alcotest ];

  meta = httpun-types.meta // {
    description = "A high-performance, memory-efficient, and scalable HTTP library for OCaml";
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -691,6 +691,8 @@ let

    httpaf-lwt-unix = callPackage ../development/ocaml-modules/httpaf/lwt-unix.nix { };

    httpun = callPackage ../development/ocaml-modules/httpun { };

    httpun-types = callPackage ../development/ocaml-modules/httpun/types.nix { };

    hxd = callPackage ../development/ocaml-modules/hxd { };