2022-11-03T03:30:25 gmailctl 0.10.5 -> 0.10.6 https://repology.org/metapackage/gmailctl/versions 2022-11-03T03:30:27 attrpath: gmailctl 2022-11-03T03:30:27 Checking auto update branch... 2022-11-03T03:30:27 No auto update branch exists 2022-11-03T03:30:28 There might already be an open PR for this update: - gmailctl: 0.10.5 -> 0.10.6 URL "https://api.github.com/repos/NixOS/nixpkgs/issues/199248" 2022-11-03T12:41:22 gmailctl 0.10.5 -> 0.10.6 https://github.com/mbrt/gmailctl/releases 2022-11-03T12:41:24 attrpath: gmailctl 2022-11-03T12:41:24 Checking auto update branch... 2022-11-03T12:41:24 No auto update branch exists 2022-11-03T12:41:25 Old version 0.10.5" not present in master derivation file with contents: { lib , buildGoModule , fetchFromGitHub , installShellFiles }: buildGoModule rec { pname = "gmailctl"; version = "0.10.6"; src = fetchFromGitHub { owner = "mbrt"; repo = "gmailctl"; rev = "v${version}"; sha256 = "sha256-OpRkBHNWRrBhh6nGrV7dZT01xsSlbANCk+g7b8SidG0="; }; vendorSha256 = "sha256-+r0WHrKARcxW1hUY1HwAXk0X6ZQrbgBj9+GjIJV5DS0="; nativeBuildInputs = [ installShellFiles ]; postInstall = '' installShellCompletion --cmd gmailctl \ --bash <($out/bin/gmailctl completion bash) \ --fish <($out/bin/gmailctl completion fish) \ --zsh <($out/bin/gmailctl completion zsh) ''; doCheck = false; meta = with lib; { description = "Declarative configuration for Gmail filters"; homepage = "https://github.com/mbrt/gmailctl"; license = licenses.mit; maintainers = with maintainers; [ doronbehar SuperSandro2000 ]; }; }