2022-11-03T01:12:52 chezmoi 2.25.0 -> 2.26.0 https://repology.org/metapackage/chezmoi/versions 2022-11-03T01:12:54 attrpath: chezmoi 2022-11-03T01:12:54 Checking auto update branch... 2022-11-03T01:12:54 An auto update branch exists with message `chezmoi: 2.25.0 -> 2.26.0`. New version is 2.26.0. 2022-11-03T01:12:54 An auto update branch exists with an equal or greater version 2022-11-03T09:53:04 chezmoi 2.25.0 -> 2.26.0 https://github.com/twpayne/chezmoi/releases 2022-11-03T09:53:06 attrpath: chezmoi 2022-11-03T09:53:06 Checking auto update branch... 2022-11-03T09:53:06 No auto update branch exists 2022-11-03T09:53:07 Old version 2.25.0" not present in master derivation file with contents: { lib, buildGoModule, fetchFromGitHub, installShellFiles }: buildGoModule rec { pname = "chezmoi"; version = "2.26.0"; src = fetchFromGitHub { owner = "twpayne"; repo = "chezmoi"; rev = "v${version}"; sha256 = "sha256-2NtYaKZiUPp33wZuH4pA0uSPdu8xxQASPlsSqjRDTRc="; }; vendorSha256 = "sha256-iDzVe8wnvJlrY8F+LyzLkX+BlvkgUPOEDQqkUPNDuUg="; doCheck = false; ldflags = [ "-s" "-w" "-X main.version=${version}" "-X main.builtBy=nixpkgs" ]; nativeBuildInputs = [ installShellFiles ]; postInstall = '' installShellCompletion --bash --name chezmoi.bash completions/chezmoi-completion.bash installShellCompletion --fish completions/chezmoi.fish installShellCompletion --zsh completions/chezmoi.zsh ''; subPackages = [ "." ]; meta = with lib; { homepage = "https://www.chezmoi.io/"; description = "Manage your dotfiles across multiple machines, securely"; license = licenses.mit; maintainers = with maintainers; [ jhillyerd ]; }; }