2022-11-07T09:52:59 ctlptl 0.8.11 -> 0.8.12 https://repology.org/metapackage/ctlptl/versions 2022-11-07T09:53:01 attrpath: ctlptl 2022-11-07T09:53:01 Checking auto update branch... 2022-11-07T09:53:01 No auto update branch exists 2022-11-07T09:53:02 Old version 0.8.11" not present in master derivation file with contents: { lib, buildGoModule, fetchFromGitHub, installShellFiles }: buildGoModule rec { pname = "ctlptl"; version = "0.8.12"; src = fetchFromGitHub { owner = "tilt-dev"; repo = pname; rev = "v${version}"; sha256 = "sha256-h0JR641+VBiTJY8INXhxwvsyZGLH4YRdkddwo2IUDQk="; }; vendorSha256 = "sha256-M9B/rfMBjYJb9szmYPVZqURlcv62qHOLJ3ka0v++z0s="; nativeBuildInputs = [ installShellFiles ]; ldflags = [ "-s" "-w" "-X main.version=${version}" ]; postInstall = '' installShellCompletion --cmd ctlptl \ --bash <($out/bin/ctlptl completion bash) \ --fish <($out/bin/ctlptl completion fish) \ --zsh <($out/bin/ctlptl completion zsh) ''; meta = with lib; { description = "CLI for declaratively setting up local Kubernetes clusters"; homepage = "https://github.com/tilt-dev/ctlptl"; license = licenses.asl20; maintainers = with maintainers; [ svrana ]; }; }