{ lib , fetchFromGitHub , buildGoModule , testers , files-cli }: buildGoModule rec { pname = "files-cli"; version = "2.12.44"; src = fetchFromGitHub { repo = "files-cli"; owner = "files-com"; rev = "v${version}"; hash = "sha256-6Y+MJCPDa64vCbg7aIqWuT6HaIFf36g++7STIVKj6GU="; }; vendorHash = "sha256-gP41EI5rZuiGzPkzWOGB69o57YSVYIvpDaKHAHtFaHM="; ldflags = [ "-s" "-w" "-X main.version=${version}" ]; doInstallCheck = true; installCheckPhase = '' runHook preInstallCheck $out/bin/files-cli --help runHook postInstallCheck ''; passthru.tests = { version = testers.testVersion { package = files-cli; command = "files-cli -v"; version = "files-cli version ${version}"; }; }; meta = with lib; { description = "Files.com Command Line App for Windows, Linux, and macOS."; homepage = "https://developers.files.com"; license = licenses.mit; maintainers = with maintainers; [ kashw2 ]; mainProgram = "files-cli"; }; }