civo 1.0.60 -> 1.0.61 https://repology.org/project/civo/versions attrpath: civo Checking auto update branch... No auto update branch exists Old version 1.0.60" not present in master derivation file with contents: { lib, buildGoModule, fetchFromGitHub, installShellFiles }: buildGoModule rec { pname = "civo"; version = "1.0.61"; src = fetchFromGitHub { owner = "civo"; repo = "cli"; rev = "v${version}"; sha256 = "sha256-Q3GIAbQ1I1qsMc5Is9SkYxc+nGuC6z8zu9cW2shwC6c="; }; vendorHash = "sha256-Ye01MmYHK2YGFsbELLVaXBeQbFGABS6WQUoH8AldRW0="; nativeBuildInputs = [ installShellFiles ]; CGO_ENABLED = 0; # Some lint checks fail doCheck = false; ldflags = [ "-s" "-X github.com/civo/cli/common.VersionCli=${version}" "-X github.com/civo/cli/common.CommitCli=${src.rev}" "-X github.com/civo/cli/common.DateCli=unknown" ]; doInstallCheck = false; postInstall = '' mv $out/bin/cli $out/bin/civo installShellCompletion --cmd civo \ --bash <($out/bin/civo completion bash) \ --fish <($out/bin/civo completion fish) \ --zsh <($out/bin/civo completion zsh) ''; meta = with lib; { description = "CLI for interacting with Civo resources"; homepage = "https://github.com/civo/cli"; license = licenses.asl20; maintainers = with maintainers; [ berryp ]; }; }