2022-12-27T12:15:04 devbox 0.1.2 -> 0.2.0 https://github.com/jetpack-io/devbox/releases 2022-12-27T12:15:07 attrpath: devbox 2022-12-27T12:15:07 Checking auto update branch... 2022-12-27T12:15:07 No auto update branch exists 2022-12-27T12:15:07 Old version 0.1.2" not present in master derivation file with contents: { buildGoModule , fetchFromGitHub , installShellFiles , lib }: buildGoModule rec { pname = "devbox"; version = "0.2.0"; src = fetchFromGitHub { owner = "jetpack-io"; repo = pname; rev = version; hash = "sha256-zfNVx3u4MtpVzxTK1yvLvPJcHUGcCFwZlGL0rZeCt4M="; }; ldflags = [ "-s" "-w" "-X go.jetpack.io/devbox/internal/build.Version=${version}" ]; # integration tests want file system access doCheck = false; vendorHash = "sha256-KQu1Ik15YR3R+taqOJI9jUlGiVJDkVhytxPTl4sCQOk="; nativeBuildInputs = [ installShellFiles ]; postInstall = '' installShellCompletion --cmd devbox \ --bash <($out/bin/devbox completion bash) \ --fish <($out/bin/devbox completion fish) \ --zsh <($out/bin/devbox completion zsh) ''; meta = with lib; { description = "Instant, easy, predictable shells and containers."; homepage = "https://www.jetpack.io/devbox"; license = licenses.asl20; maintainers = with maintainers; [ urandom ]; }; }