librespeed-cli: Rename binary to match upstream (#423796)

This commit is contained in:
Fabian Affolter
2025-07-09 22:52:24 +02:00
committed by GitHub
+5 -1
View File
@@ -21,13 +21,17 @@ buildGoModule rec {
# Tests have additional requirements
doCheck = false;
postInstall = ''
mv $out/bin/speedtest-cli $out/bin/librespeed-cli
'';
meta = with lib; {
description = "Command line client for LibreSpeed";
homepage = "https://github.com/librespeed/speedtest-cli";
changelog = "https://github.com/librespeed/speedtest-cli/releases/tag/${src.tag}";
license = licenses.lgpl3Only;
maintainers = with maintainers; [ fab ];
mainProgram = "speedtest-cli";
mainProgram = "librespeed-cli";
broken = stdenv.hostPlatform.isDarwin;
};
}