Rename the binary to match upstream name

This commit is contained in:
Nathan Warner 2025-07-09 08:10:26 -06:00
parent 5de825150d
commit 8a8ec917b4

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;
};
}