2022-11-11T09:38:52 coder 0.12.4 -> 0.12.6 https://repology.org/metapackage/coder/versions 2022-11-11T09:38:54 attrpath: coder 2022-11-11T09:38:55 Checking auto update branch... 2022-11-11T09:38:55 No auto update branch exists 2022-11-11T09:38:55 Old version 0.12.4" not present in master derivation file with contents: { buildGoModule , fetchFromGitHub , installShellFiles , lib }: buildGoModule rec { pname = "coder"; version = "0.12.5"; src = fetchFromGitHub { owner = pname; repo = pname; rev = "v${version}"; hash = "sha256-tPpWj2MV2LLIOGq+RTpHpLozgqv7gBgYD3jjehRXOvk="; }; # integration tests require network access doCheck = false; vendorHash = "sha256-3SStGCDpo+AS4PM9mbXM0EjsJ/3CVFQyb/NRK9RSZ3A="; nativeBuildInputs = [ installShellFiles ]; postInstall = '' installShellCompletion --cmd coder \ --bash <($out/bin/coder completion bash) \ --fish <($out/bin/coder completion fish) \ --zsh <($out/bin/coder completion zsh) ''; meta = with lib; { description = "Remote development environments on your infrastructure provisioned with Terraform"; homepage = "https://coder.com"; license = licenses.agpl3; maintainers = with maintainers; [ urandom ]; }; }