glooctl 1.13.8 -> 1.13.9 https://repology.org/metapackage/glooctl/versions attrpath: glooctl Checking auto update branch... An auto update branch exists with message `glooctl: 1.13.8 -> 1.13.9`. New version is 1.13.9. An auto update branch exists with an equal or greater version glooctl 1.13.8 -> 1.13.9 https://github.com/solo-io/gloo/releases attrpath: glooctl Checking auto update branch... No auto update branch exists Old version 1.13.8" not present in master derivation file with contents: { lib, buildGoModule, fetchFromGitHub, installShellFiles }: buildGoModule rec { pname = "glooctl"; version = "1.13.9"; src = fetchFromGitHub { owner = "solo-io"; repo = "gloo"; rev = "v${version}"; hash = "sha256-rlZtZC5D5wSYVjP/IHSY9eSfaGRGhtfndkC6PYDMXqg="; }; subPackages = [ "projects/gloo/cli/cmd" ]; vendorHash = "sha256-sQv6g0Xgs+6jgxacWJwE3dK3GimfiPHly0Z0rvdKNE4="; nativeBuildInputs = [ installShellFiles ]; postInstall = '' mv $out/bin/cmd $out/bin/glooctl export HOME=$TMP installShellCompletion --cmd glooctl \ --bash <($out/bin/glooctl completion bash) \ --zsh <($out/bin/glooctl completion zsh) ''; ldflags = [ "-s" "-w" "-X github.com/solo-io/gloo/pkg/version.Version=${version}" ]; meta = with lib; { description = "glooctl is the unified CLI for Gloo"; homepage = "https://docs.solo.io/gloo-edge/latest/reference/cli/glooctl/"; license = licenses.asl20; maintainers = with maintainers; [ nelsonjeppesen ]; }; }