Unverified Commit 3e498ed2 authored by superherointj's avatar superherointj Committed by GitHub
Browse files

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

ocamlPackages.happy-eyeballs-{mirage,lwt}: init at 0.1.3
parents 547a54a2 bdd40fad
Loading
Loading
Loading
Loading
+26 −0
Original line number Diff line number Diff line
{ 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";
  };

}
+25 −0
Original line number Diff line number Diff line
{ 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";
  };

}
+4 −0
Original line number Diff line number Diff line
@@ -520,6 +520,10 @@ 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 { };

    herelib = callPackage ../development/ocaml-modules/herelib { };