3
0
Fork 0
forked from mirrors/nixpkgs

speedtest-go: init at 1.5.2

This commit is contained in:
aleksana 2023-03-14 05:40:02 +08:00
parent f7eeb48523
commit 8d32fec9cc
2 changed files with 34 additions and 0 deletions

View file

@ -0,0 +1,32 @@
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "speedtest-go";
version = "1.5.2";
src = fetchFromGitHub {
owner = "showwin";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-9jLreb3tEw5bCVka6/BzGbsd5V3+9OHNzENe/IxL1YM=";
};
vendorHash = "sha256-A54G3fvs1bXSwPHVUNFC9VJqydqYR5t4I2fIBvrVoRE=";
subPackages = [ "speedtest.go" ];
# 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 ];
mainProgram = "speedtest";
};
}

View file

@ -1593,6 +1593,8 @@ with pkgs;
spectre-cli = callPackage ../tools/security/spectre-cli { };
speedtest-go = callPackage ../tools/networking/speedtest-go { };
speedtest-rs = callPackage ../tools/networking/speedtest-rs { };
steamtinkerlaunch = callPackage ../tools/games/steamtinkerlaunch { };