2022-06-30 07:29:07 +02:00
|
|
|
{ lib, buildDunePackage, fetchurl
|
|
|
|
, domain-name, duration, fmt, ipaddr, logs
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildDunePackage rec {
|
|
|
|
pname = "happy-eyeballs";
|
2024-08-12 06:39:58 +02:00
|
|
|
version = "1.1.0";
|
2022-06-30 07:29:07 +02:00
|
|
|
|
|
|
|
minimalOCamlVersion = "4.08";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/roburio/happy-eyeballs/releases/download/v${version}/happy-eyeballs-${version}.tbz";
|
2024-08-12 06:39:58 +02:00
|
|
|
hash = "sha256-zmZwueHs9be8M5x8Zm2rjPJb6bryDNTAeE8SEFtP3ME=";
|
2022-06-30 07:29:07 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
domain-name
|
|
|
|
duration
|
|
|
|
fmt
|
|
|
|
ipaddr
|
|
|
|
logs
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Connecting to a remote host via IP version 4 or 6";
|
|
|
|
homepage = "https://github.com/roburio/happy-eyeballs";
|
|
|
|
license = lib.licenses.isc;
|
2022-05-31 21:34:09 +02:00
|
|
|
maintainers = with lib.maintainers; [ vbgl ulrikstrid ];
|
2022-06-30 07:29:07 +02:00
|
|
|
};
|
|
|
|
}
|