istioctl 1.16.1 -> 1.16.2 https://repology.org/metapackage/istioctl/versions attrpath: istioctl Checking auto update branch... No auto update branch exists Old version 1.16.1" not present in master derivation file with contents: { lib, buildGoModule, fetchFromGitHub, installShellFiles }: buildGoModule rec { pname = "istioctl"; version = "1.16.2"; src = fetchFromGitHub { owner = "istio"; repo = "istio"; rev = version; sha256 = "sha256-Qvpg6qLrtnnMrRWFHv7J+drM75V6DaMu1jxcxaCJ4kk="; }; vendorHash = "sha256-wPkjRkgQiGvZm+eOGVlM5cgrYugF/E8H71bcR2ofP2U="; nativeBuildInputs = [ installShellFiles ]; # Bundle release metadata ldflags = let attrs = [ "istio.io/pkg/version.buildVersion=${version}" "istio.io/pkg/version.buildStatus=Nix" "istio.io/pkg/version.buildTag=${version}" "istio.io/pkg/version.buildHub=docker.io/istio" ]; in ["-s" "-w" "${lib.concatMapStringsSep " " (attr: "-X ${attr}") attrs}"]; subPackages = [ "istioctl/cmd/istioctl" ]; doInstallCheck = true; installCheckPhase = '' $out/bin/istioctl version --remote=false | grep ${version} > /dev/null ''; postInstall = '' $out/bin/istioctl collateral --man --bash --zsh installManPage *.1 installShellCompletion istioctl.bash installShellCompletion --zsh _istioctl ''; meta = with lib; { description = "Istio configuration command line utility for service operators to debug and diagnose their Istio mesh"; homepage = "https://istio.io/latest/docs/reference/commands/istioctl"; license = licenses.asl20; maintainers = with maintainers; [ bryanasdev000 veehaitch ]; platforms = platforms.unix; }; }