2022-12-02T07:00:21 clusterctl 1.2.6 -> 1.3.0 https://repology.org/metapackage/clusterctl/versions 2022-12-02T07:00:23 attrpath: clusterctl 2022-12-02T07:00:24 Checking auto update branch... 2022-12-02T07:00:24 No auto update branch exists 2022-12-02T07:00:24 Old version 1.2.6" not present in master derivation file with contents: { lib, buildGoModule, fetchFromGitHub, installShellFiles, testers, clusterctl }: buildGoModule rec { pname = "clusterctl"; version = "1.3.0"; src = fetchFromGitHub { owner = "kubernetes-sigs"; repo = "cluster-api"; rev = "v${version}"; sha256 = "sha256-lqHHZtEtedU0Qtm6o6iy6JrQ1UiB9nSTZVyfq0cj0vI="; }; vendorSha256 = "sha256-7e2ZJa6MfzznOoaBq0xQIXrdmDAzPzKh9QFlRfbxYMM="; subPackages = [ "cmd/clusterctl" ]; nativeBuildInputs = [ installShellFiles ]; ldflags = let t = "sigs.k8s.io/cluster-api/version"; in [ "-X ${t}.gitMajor=${lib.versions.major version}" "-X ${t}.gitMinor=${lib.versions.minor version}" "-X ${t}.gitVersion=v${version}" ]; postInstall = '' # errors attempting to write config to read-only $HOME export HOME=$TMPDIR installShellCompletion --cmd clusterctl \ --bash <($out/bin/clusterctl completion bash) \ --zsh <($out/bin/clusterctl completion zsh) ''; passthru.tests.version = testers.testVersion { package = clusterctl; command = "HOME=$TMPDIR clusterctl version"; version = "v${version}"; }; meta = with lib; { description = "Kubernetes cluster API tool"; homepage = "https://cluster-api.sigs.k8s.io/"; license = licenses.asl20; maintainers = with maintainers; [ zowoq ]; }; }