2022-11-19T00:31:43 flyctl 0.0.431 -> 0.0.432 https://github.com/superfly/flyctl/releases 2022-11-19T00:31:46 attrpath: flyctl 2022-11-19T00:31:46 Checking auto update branch... 2022-11-19T00:31:46 No auto update branch exists 2022-11-19T00:31:46 Old version 0.0.431" not present in master derivation file with contents: { lib, buildGoModule, fetchFromGitHub, testers, flyctl, installShellFiles }: buildGoModule rec { pname = "flyctl"; version = "0.0.432"; src = fetchFromGitHub { owner = "superfly"; repo = "flyctl"; rev = "v${version}"; sha256 = "sha256-nBBvhl5Ls/zKSLFzatCl61Wa1eXDHLwED+Q6o4xMJ5c="; }; vendorSha256 = "sha256-8Vf9JRahGkp8/5D5oDt0fnbeeLAD0q656XWdUDtceq8="; subPackages = [ "." ]; ldflags = [ "-s" "-w" "-X github.com/superfly/flyctl/internal/buildinfo.commit=${src.rev}" "-X github.com/superfly/flyctl/internal/buildinfo.buildDate=1970-01-01T00:00:00Z" "-X github.com/superfly/flyctl/internal/buildinfo.environment=production" "-X github.com/superfly/flyctl/internal/buildinfo.version=${version}" ]; nativeBuildInputs = [ installShellFiles ]; preBuild = '' go generate ./... ''; preCheck = '' HOME=$(mktemp -d) ''; postCheck = '' go test ./... -ldflags="-X 'github.com/superfly/flyctl/internal/buildinfo.buildDate=1970-01-01T00:00:00Z'" ''; postInstall = '' installShellCompletion --cmd flyctl \ --bash <($out/bin/flyctl completion bash) \ --fish <($out/bin/flyctl completion fish) \ --zsh <($out/bin/flyctl completion zsh) ln -s $out/bin/flyctl $out/bin/fly ''; passthru.tests.version = testers.testVersion { package = flyctl; command = "HOME=$(mktemp -d) flyctl version"; version = "v${flyctl.version}"; }; meta = with lib; { description = "Command line tools for fly.io services"; downloadPage = "https://github.com/superfly/flyctl"; homepage = "https://fly.io/"; license = licenses.asl20; maintainers = with maintainers; [ aaronjanse jsierles techknowlogick viraptor ]; }; }