ocamlPackages.httpaf-lwt-unix: init at 0.7.1
This commit is contained in:
parent
b9c1fc6961
commit
b169e34beb
2 changed files with 24 additions and 0 deletions
22
pkgs/development/ocaml-modules/httpaf/lwt-unix.nix
Normal file
22
pkgs/development/ocaml-modules/httpaf/lwt-unix.nix
Normal file
|
@ -0,0 +1,22 @@
|
|||
{ lib, buildDunePackage
|
||||
, httpaf
|
||||
, faraday-lwt-unix
|
||||
, lwt
|
||||
}:
|
||||
|
||||
buildDunePackage {
|
||||
pname = "httpaf-lwt-unix";
|
||||
inherit (httpaf) version src;
|
||||
duneVersion = "3";
|
||||
minimalOCamlVersion = "4.08";
|
||||
|
||||
propagatedBuildInputs = [
|
||||
faraday-lwt-unix
|
||||
httpaf
|
||||
lwt
|
||||
];
|
||||
|
||||
meta = httpaf.meta // {
|
||||
description = "Lwt support for http/af";
|
||||
};
|
||||
}
|
|
@ -610,6 +610,8 @@ let
|
|||
|
||||
httpaf = callPackage ../development/ocaml-modules/httpaf { };
|
||||
|
||||
httpaf-lwt-unix = callPackage ../development/ocaml-modules/httpaf/lwt-unix.nix { };
|
||||
|
||||
index = callPackage ../development/ocaml-modules/index { };
|
||||
|
||||
inifiles = callPackage ../development/ocaml-modules/inifiles { };
|
||||
|
|
Loading…
Reference in a new issue