{ lib, buildGoModule, fetchFromGitHub }: buildGoModule rec { pname = "vultr-cli"; version = "2.7.0"; src = fetchFromGitHub { owner = "vultr"; repo = pname; rev = "v${version}"; sha256 = "sha256-3q0in41/ZGuZcMiu+5qT8AGttro2it89xp741RCxAYY="; }; vendorSha256 = null; doCheck = false; meta = with lib; { description = "Official command line tool for Vultr services"; homepage = "https://github.com/vultr/vultr-cli"; license = licenses.asl20; maintainers = with maintainers; [ Br1ght0ne ]; }; }