coder 0.14.3 -> 0.15.1 https://github.com/coder/coder/releases attrpath: coder Checking auto update branch... No auto update branch exists Old version 0.14.3" not present in staging derivation file with contents: { buildGoModule , fetchFromGitHub , installShellFiles , lib }: buildGoModule rec { pname = "coder"; version = "0.13.6"; src = fetchFromGitHub { owner = pname; repo = pname; rev = "v${version}"; hash = "sha256-F1nimZsOhm1TPFDC6oZjAE6BfPc85tWCsv6HQUXCd2c="; }; # integration tests require network access doCheck = false; vendorHash = "sha256-vK4QfVCyxu7KOOfCpOnkXDlVQJo6kujP203K9VXr4YA="; 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 = "Provision software development environments via Terraform on Linux, macOS, Windows, X86, ARM, and of course, Kubernetes"; homepage = "https://coder.com"; license = licenses.agpl3; maintainers = with maintainers; [ ghuntley urandom ]; }; }