biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / ocaml-modules / happy-eyeballs / default.nix
blob79b1a30d61fce33e26d283c53cf192c6aa0a8107
1 { lib, buildDunePackage, fetchurl
2 , domain-name, duration, fmt, ipaddr, logs
3 }:
5 buildDunePackage rec {
6   pname = "happy-eyeballs";
7   version = "0.5.0";
9   minimalOCamlVersion = "4.08";
10   duneVersion = "3";
12   src = fetchurl {
13     url = "https://github.com/roburio/happy-eyeballs/releases/download/v${version}/happy-eyeballs-${version}.tbz";
14     hash = "sha256-T4BOFlSj3xfUFhP9v8UaCHgmhvGrMyeqNUQf79bdBh4=";
15   };
17   propagatedBuildInputs = [
18     domain-name
19     duration
20     fmt
21     ipaddr
22     logs
23   ];
25   meta = {
26     description = "Connecting to a remote host via IP version 4 or 6";
27     homepage = "https://github.com/roburio/happy-eyeballs";
28     license = lib.licenses.isc;
29     maintainers = with lib.maintainers; [ vbgl ulrikstrid ];
30   };