nixpkgs/pkgs/development/ocaml-modules/happy-eyeballs/lwt.nix
Vincent Laporte e2f0148a20 ocamlPackages.dns: 6.3.0 → 6.4.1
ocamlPackages.happy-eyeballs: 0.3.0 → 0.4.0
2023-01-12 17:56:25 +01:00

47 lines
663 B
Nix

{ buildDunePackage
, happy-eyeballs
, cmdliner
, dns-client
, duration
, domain-name
, ipaddr
, fmt
, logs
, lwt
, mtime
}:
buildDunePackage {
pname = "happy-eyeballs-lwt";
inherit (happy-eyeballs) src version;
minimalOCamlVersion = "4.08";
duneVersion = "3";
strictDeps = true;
buildInputs = [
cmdliner
duration
domain-name
ipaddr
fmt
mtime
];
propagatedBuildInputs = [
dns-client
happy-eyeballs
logs
lwt
];
doCheck = true;
meta = happy-eyeballs.meta // {
mainProgram = "happy_eyeballs_client";
description = "Connecting to a remote host via IP version 4 or 6 using Lwt_unix";
};
}