5c370c0b2a
GitOrigin-RevId: 33d1e753c82ffc557b4a585c77de43d4c922ebb5
35 lines
849 B
Nix
35 lines
849 B
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
}:
|
|
buildGoModule rec {
|
|
pname = "speedtest-go";
|
|
version = "1.7.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "showwin";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-8YN7k7sP0S3MIArUfwDYMQvcCKNTxauQjevyOoisAuc=";
|
|
};
|
|
|
|
vendorHash = "sha256-wQqAX7YuxxTiMWmV9LRoXunGMMzs12UyHbf4VvbQF1E=";
|
|
|
|
excludedPackages = [ "example" ];
|
|
|
|
# test suite requires network
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "CLI and Go API to Test Internet Speed using speedtest.net";
|
|
homepage = "https://github.com/showwin/speedtest-go";
|
|
changelog = "https://github.com/showwin/speedtest-go/releases/tag/v${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [
|
|
aleksana
|
|
luftmensch-luftmensch
|
|
];
|
|
mainProgram = "speedtest-go";
|
|
};
|
|
}
|