ookla-speedtest: 1.1.1 -> 1.2.0
Release notes for 1.2.0 (2022-07-27): * Cleaned up formatting in human-readable output for additional data within parenthesis (now using `label: value` consistently) * Compressed result upload data to reduce data usage * Added support for measuring responsiveness (latency during load) * Added experimental support for multi-server testing * Updated third-party dependencies: cURL 7.83.1, mbed TLS 3.1.0, Boost 1.79.0 * Added stability improvements
This commit is contained in:
parent
d4572a24bc
commit
eee417892e
1 changed files with 5 additions and 5 deletions
|
@ -2,20 +2,20 @@
|
|||
|
||||
let
|
||||
pname = "ookla-speedtest";
|
||||
version = "1.1.1";
|
||||
version = "1.2.0";
|
||||
|
||||
srcs = rec {
|
||||
x86_64-linux = fetchurl {
|
||||
url = "https://install.speedtest.net/app/cli/${pname}-${version}-linux-x86_64.tgz";
|
||||
sha256 = "sha256-lwR3/f7k10HnXwiPr2SPm1HHvgQxP7iP+13gfrGjBAw=";
|
||||
sha256 = "sha256-VpBZbFT/m+1j+jcy+BigXbwtsZrTbtaPIcpfZNXP7rc=";
|
||||
};
|
||||
aarch64-linux = fetchurl {
|
||||
url = "https://install.speedtest.net/app/cli/${pname}-${version}-linux-aarch64.tgz";
|
||||
sha256 = "sha256-J2pAhz/hw8okohWAwvxkqpLtNY/8bbYHGhPQOo1DH9k=";
|
||||
sha256 = "sha256-OVPSMdo3g+K/iQS23XJ2fFxuUz4WPTdC/QQ3r/pDG9M=";
|
||||
};
|
||||
x86_64-darwin = fetchurl {
|
||||
url = "https://install.speedtest.net/app/cli/${pname}-${version}.84-macosx-x86_64.tgz";
|
||||
sha256 = "sha256-FT925OUCortHDH98O0uK+qUOuYuxHoYhb8sai5JnbpQ=";
|
||||
url = "https://install.speedtest.net/app/cli/${pname}-${version}-macosx-universal.tgz";
|
||||
sha256 = "sha256-yfgZIUnryI+GmZmM7Ksc4UQUQEWQfs5vU89Qh39N5m8=";
|
||||
};
|
||||
aarch64-darwin = x86_64-darwin;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue