diff --git a/pkgs/tools/networking/speedtest-rs/default.nix b/pkgs/tools/networking/speedtest-rs/default.nix index 22f4fba0c01a..b70aaa95aa5b 100644 --- a/pkgs/tools/networking/speedtest-rs/default.nix +++ b/pkgs/tools/networking/speedtest-rs/default.nix @@ -5,17 +5,20 @@ , pkg-config , stdenv , darwin +, nix-update-script +, testers +, speedtest-rs }: rustPlatform.buildRustPackage rec { pname = "speedtest-rs"; - version = "0.1.5"; + version = "0.2.0"; src = fetchFromGitHub { owner = "nelsonjchen"; - repo = pname; + repo = "speedtest-rs"; rev = "refs/tags/v${version}"; - hash = "sha256-JKthXrosqDZh6CWEqT08h3ySPZulitDol7lX3Eo7orM="; + hash = "sha256-1FAFYiWDD/KG/7/UTv/EW6Nj2GnU0GZFFq6ouMc0URA="; }; buildInputs = [ openssl ] ++ @@ -26,14 +29,25 @@ rustPlatform.buildRustPackage rec { nativeBuildInputs = [ pkg-config ]; - cargoHash = "sha256-kUXHC/qXgukaUqaBykXB2ZWmfQEjzJuIyemr1ogVX1U="; + cargoHash = "sha256-0YPCBzidE1+LgIYk457eSoerLvQuuZs9cTd7uUt1Lr8="; - meta = with lib; { + # Fail for unclear reasons (only on darwin) + checkFlags = lib.optionals stdenv.isDarwin [ + "--skip=speedtest::tests::test_get_configuration" + "--skip=speedtest::tests::test_get_server_list_with_config" + ]; + + passthru = { + updateScript = nix-update-script { }; + tests.version = testers.testVersion { package = speedtest-rs; }; + }; + + meta = { description = "Command line internet speedtest tool written in rust"; homepage = "https://github.com/nelsonjchen/speedtest-rs"; changelog = "https://github.com/nelsonjchen/speedtest-rs/blob/v${version}/CHANGELOG.md"; - license = with licenses; [ mit asl20 ]; - maintainers = with maintainers; [ GaetanLepage ]; + license = with lib.licenses; [ mit asl20 ]; + maintainers = with lib.maintainers; [ GaetanLepage ]; mainProgram = "speedtest-rs"; }; }