Merge pull request #191271 from vbgl/ocaml-happy-eyeballs-mirage

ocamlPackages.happy-eyeballs-{mirage,lwt}: init at 0.1.3

authored by superherointj and committed by GitHub 3e498ed2 547a54a2

+55
+26
pkgs/development/ocaml-modules/happy-eyeballs/lwt.nix
··· 1 + { buildDunePackage 2 + , happy-eyeballs 3 + , cmdliner 4 + , dns-client 5 + , logs 6 + , lwt 7 + }: 8 + 9 + buildDunePackage { 10 + pname = "happy-eyeballs-lwt"; 11 + inherit (happy-eyeballs) src version; 12 + 13 + buildInputs = [ cmdliner ]; 14 + 15 + propagatedBuildInputs = [ 16 + dns-client 17 + happy-eyeballs 18 + logs 19 + lwt 20 + ]; 21 + 22 + meta = happy-eyeballs.meta // { 23 + description = "Connecting to a remote host via IP version 4 or 6 using Lwt_unix"; 24 + }; 25 + 26 + }
+25
pkgs/development/ocaml-modules/happy-eyeballs/mirage.nix
··· 1 + { buildDunePackage 2 + , happy-eyeballs 3 + , dns-client 4 + , logs 5 + , lwt 6 + , tcpip 7 + }: 8 + 9 + buildDunePackage { 10 + pname = "happy-eyeballs-mirage"; 11 + inherit (happy-eyeballs) src version; 12 + 13 + propagatedBuildInputs = [ 14 + dns-client 15 + happy-eyeballs 16 + logs 17 + lwt 18 + tcpip 19 + ]; 20 + 21 + meta = happy-eyeballs.meta // { 22 + description = "Connecting to a remote host via IP version 4 or 6 using Mirage"; 23 + }; 24 + 25 + }
+4
pkgs/top-level/ocaml-packages.nix
··· 520 520 521 521 happy-eyeballs = callPackage ../development/ocaml-modules/happy-eyeballs { }; 522 522 523 + happy-eyeballs-lwt = callPackage ../development/ocaml-modules/happy-eyeballs/lwt.nix { }; 524 + 525 + happy-eyeballs-mirage = callPackage ../development/ocaml-modules/happy-eyeballs/mirage.nix { }; 526 + 523 527 hashcons = callPackage ../development/ocaml-modules/hashcons { }; 524 528 525 529 herelib = callPackage ../development/ocaml-modules/herelib { };