{ lib , buildGoModule , fetchFromGitHub }: buildGoModule rec { pname = "brev-cli"; version = "0.6.199"; src = fetchFromGitHub { owner = "brevdev"; repo = pname; rev = "v${version}"; sha256 = "sha256-6sEgxUDKKAFWxWQqTb8hLt+vqlkD/9f5zdj9rh3sDLM="; }; vendorHash = "sha256-hpS8fyyWIw1vkWXyd1OxyorGT5j4bJ5Ey+Hh48QF0p0="; CGO_ENABLED = 0; subPackages = [ "." ]; ldflags = [ "-s" "-w" "-X github.com/brevdev/brev-cli/pkg/cmd/version.Version=${src.rev}" ]; postInstall = '' mv $out/bin/brev-cli $out/bin/brev ''; meta = with lib; { description = "Connect your laptop to cloud computers"; homepage = "https://github.com/brevdev/brev-cli"; license = licenses.mit; maintainers = with maintainers; [ dit7ya ]; }; }