nixpkgs/pkgs/tools/networking/speedtest-go/default.nix
2024-05-16 20:27:46 +02:00

36 lines
849 B
Nix

{
lib,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule rec {
pname = "speedtest-go";
version = "1.7.7";
src = fetchFromGitHub {
owner = "showwin";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-8LMbaa3D1ODjySx69U0CGWphG8CQswWlQsqW6mXPy6o=";
};
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";
};
}