ocamlPackages.happy-eyeballs-lwt: init at 0.1.3

This commit is contained in:
Vincent Laporte 2022-09-15 06:34:34 +02:00
parent 52f226dd5b
commit bdd40fad13
No known key found for this signature in database
GPG Key ID: EBD582ADDDB1F81F
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,26 @@
{ buildDunePackage
, happy-eyeballs
, cmdliner
, dns-client
, logs
, lwt
}:
buildDunePackage {
pname = "happy-eyeballs-lwt";
inherit (happy-eyeballs) src version;
buildInputs = [ cmdliner ];
propagatedBuildInputs = [
dns-client
happy-eyeballs
logs
lwt
];
meta = happy-eyeballs.meta // {
description = "Connecting to a remote host via IP version 4 or 6 using Lwt_unix";
};
}

View File

@ -517,6 +517,8 @@ let
happy-eyeballs = callPackage ../development/ocaml-modules/happy-eyeballs { };
happy-eyeballs-lwt = callPackage ../development/ocaml-modules/happy-eyeballs/lwt.nix { };
happy-eyeballs-mirage = callPackage ../development/ocaml-modules/happy-eyeballs/mirage.nix { };
hashcons = callPackage ../development/ocaml-modules/hashcons { };