mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
ocamlPackages.httpun: init at 0.2.0
This commit is contained in:
parent
c48691642f
commit
7e69dfd3c0
22
pkgs/development/ocaml-modules/httpun/default.nix
Normal file
22
pkgs/development/ocaml-modules/httpun/default.nix
Normal file
@ -0,0 +1,22 @@
|
||||
{ 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";
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user