From 4496435b18a2600ab22a6ca96da8b40ba30d5f25 Mon Sep 17 00:00:00 2001 From: Bob Bobber Date: Thu, 26 Feb 2026 18:47:54 -0500 Subject: [PATCH 1/2] imapgoose: init at 0.4.2 --- pkgs/by-name/im/imapgoose/package.nix | 53 +++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 pkgs/by-name/im/imapgoose/package.nix diff --git a/pkgs/by-name/im/imapgoose/package.nix b/pkgs/by-name/im/imapgoose/package.nix new file mode 100644 index 000000000000..e07464412292 --- /dev/null +++ b/pkgs/by-name/im/imapgoose/package.nix @@ -0,0 +1,53 @@ +{ + lib, + buildGoModule, + fetchFromSourcehut, + installShellFiles, +}: +buildGoModule rec { + pname = "imapgoose"; + version = "0.4.2"; + + src = fetchFromSourcehut { + owner = "~whynothugo"; + repo = "ImapGoose"; + tag = "v${version}"; + hash = "sha256-Zu2cHCTl6RyZzndFrLM7xTeD/T3isVerIB8D6vD3jIU="; + }; + + vendorHash = "sha256-6mh6KsJlijXn+bLzmtJSC4lcYFChQdyBKEjFzbQMIM0="; + + subPackages = [ + "cmd/imapgoose" + "cmd/capcheck" + ]; + + nativeBuildInputs = [ installShellFiles ]; + + postInstall = '' + installManPage imapgoose.1 + installManPage imapgoose.conf.5 + ''; + + meta = { + description = "IMAP to Maildir synchronization tool"; + longDescription = '' + ImapGoose is a daemon that continuously keeps local mailboxes in sync + with an IMAP server. It monitors both the IMAP server and local + filesystem, immediately synchronizing changes within seconds. Unlike + traditional sync tools, ImapGoose is highly optimized to reduce network + traffic by leveraging modern IMAP extensions (CONDSTORE, QRESYNC, and + NOTIFY) to perform efficient incremental syncs. It can monitor multiple + mailboxes per connection and automatically reconnects with exponential + back-off when network issues occur. + ''; + homepage = "https://git.sr.ht/~whynothugo/ImapGoose"; + changelog = "https://git.sr.ht/~whynothugo/ImapGoose/refs/v${version}"; + license = lib.licenses.isc; + platforms = lib.platforms.linux; + mainProgram = "imapgoose"; + maintainers = with lib.maintainers; [ + bobberb + ]; + }; +} From cee2209f9de79002f84b0975c19cbd69b7984536 Mon Sep 17 00:00:00 2001 From: Bob Bobber Date: Thu, 26 Feb 2026 18:47:56 -0500 Subject: [PATCH 2/2] maintainers: add bobberb --- maintainers/maintainer-list.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index d458e7bd783d..9733d217ea48 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -3667,6 +3667,12 @@ githubId = 10221570; name = "Bo Bakker"; }; + bobberb = { + email = "bobberb@half-done.org"; + github = "bobberb"; + githubId = 1891836; + name = "bobberb"; + }; bobby285271 = { name = "Bobby Rong"; email = "rjl931189261@126.com";