From 07daef9f044e3b305e9822bc5ffcfad97568af64 Mon Sep 17 00:00:00 2001 From: Romain Paquet Date: Thu, 15 Jan 2026 22:04:53 +0100 Subject: [PATCH] ocamlPackages.happy-eyeballs-miou-unix: init at 2.0.1 --- .../happy-eyeballs/miou-unix.nix | 38 +++++++++++++++++++ pkgs/top-level/ocaml-packages.nix | 4 ++ 2 files changed, 42 insertions(+) create mode 100644 pkgs/development/ocaml-modules/happy-eyeballs/miou-unix.nix diff --git a/pkgs/development/ocaml-modules/happy-eyeballs/miou-unix.nix b/pkgs/development/ocaml-modules/happy-eyeballs/miou-unix.nix new file mode 100644 index 000000000000..de396a05174e --- /dev/null +++ b/pkgs/development/ocaml-modules/happy-eyeballs/miou-unix.nix @@ -0,0 +1,38 @@ +{ + buildDunePackage, + happy-eyeballs, + cmdliner, + duration, + domain-name, + fmt, + ipaddr, + logs, + miou, + mtime, +}: + +buildDunePackage { + pname = "happy-eyeballs-miou-unix"; + inherit (happy-eyeballs) src version; + + buildInputs = [ + cmdliner + duration + domain-name + fmt + ipaddr + mtime + ]; + + propagatedBuildInputs = [ + happy-eyeballs + logs + miou + ]; + + doCheck = true; + + meta = happy-eyeballs.meta // { + description = "Connecting to a remote host via IP version 4 or 6 using Miou"; + }; +} diff --git a/pkgs/top-level/ocaml-packages.nix b/pkgs/top-level/ocaml-packages.nix index 51dfcd2c9b09..e454187653de 100644 --- a/pkgs/top-level/ocaml-packages.nix +++ b/pkgs/top-level/ocaml-packages.nix @@ -786,6 +786,10 @@ let happy-eyeballs-lwt = callPackage ../development/ocaml-modules/happy-eyeballs/lwt.nix { }; + happy-eyeballs-miou-unix = + callPackage ../development/ocaml-modules/happy-eyeballs/miou-unix.nix + { }; + happy-eyeballs-mirage = callPackage ../development/ocaml-modules/happy-eyeballs/mirage.nix { }; hashcons = callPackage ../development/ocaml-modules/hashcons { };