mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
1f92ee7ad7
ocamlPackages.conduit: 6.2.1 → 6.2.3 ocamlPackages.dns: 7.0.1 → 8.0.0 ocamlPackages.git: 3.14.0 → 3.16.1 ocamlPackages.http-mirage-client: 0.0.5 → 0.0.6 ocamlPackages.mimic: 0.0.6 → 0.0.9 ocamlPackages.mirage-flow: 3.0.0 → 4.0.0 ocamlPackages.mirage-vnetif: 0.6.0 → 0.6.2 ocamlPackages.paf: 0.5.0 → 0.6.0 ocamlPackages.tcpip: 8.0.0 → 8.1.0 ocamlPackages.vchan: 6.0.1 → 6.0.2
30 lines
726 B
Nix
30 lines
726 B
Nix
{ lib, buildDunePackage, fetchurl
|
|
, domain-name, duration, fmt, ipaddr, logs
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
pname = "happy-eyeballs";
|
|
version = "1.1.0";
|
|
|
|
minimalOCamlVersion = "4.08";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/roburio/happy-eyeballs/releases/download/v${version}/happy-eyeballs-${version}.tbz";
|
|
hash = "sha256-zmZwueHs9be8M5x8Zm2rjPJb6bryDNTAeE8SEFtP3ME=";
|
|
};
|
|
|
|
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;
|
|
maintainers = with lib.maintainers; [ vbgl ulrikstrid ];
|
|
};
|
|
}
|