devbox 0.3.4 -> 0.4.2 https://repology.org/metapackage/devbox/versions attrpath: devbox Checking auto update branch... No auto update branch exists Old version 0.3.4" not present in master derivation file with contents: { buildGoModule , fetchFromGitHub , installShellFiles , lib }: buildGoModule rec { pname = "devbox"; version = "0.4.2"; src = fetchFromGitHub { owner = "jetpack-io"; repo = pname; rev = version; hash = "sha256-9aGmX21TUINGDA3NB/OrGXi8W4i+b8fKS8ft8GtQxNM="; }; ldflags = [ "-s" "-w" "-X go.jetpack.io/devbox/internal/build.Version=${version}" ]; # integration tests want file system access doCheck = false; vendorHash = "sha256-62cJVlrGdrBSK+yzOA4WiHvplEMuKo09qp95+aX3WY0="; 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 ]; }; }