3
0
Fork 0
forked from mirrors/nixpkgs

ocamlPackages.happy-eyeballs-mirage: init at 0.1.3

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

View file

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

View file

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