diff options
author | Philippe SWARTVAGHER <phil.swart@gmx.fr> | 2025-07-27 22:10:57 +0200 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-31 22:47:38 +0100 |
commit | 84cb3fdf59b3352732c8cb6754851a37fc41b392 (patch) | |
tree | 49f6a4f21101da9d4caec87fe34172730006d6f6 | |
parent | e8e7b3ef586a8810c1697dc14371cd90bf59cbb9 (diff) |
gnu: Add maildir-rank-addr.
* gnu/packages/web.scm (maildir-rank-addr): New variable.
Change-Id: Idc29e3f7d25472ee1e3acf4bf5d892900adb11a2
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
-rw-r--r-- | gnu/packages/web.scm | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm index 61c9ec63a5..170d48adf4 100644 --- a/gnu/packages/web.scm +++ b/gnu/packages/web.scm @@ -76,6 +76,7 @@ ;;; Copyright © 2025 Daniel Khodabakhsh <d@niel.khodabakh.sh> ;;; Copyright © 2025 Josep Bigorra <jjbigorra@gmail.com> ;;; Copyright © 2025 Ashish SHUKLA <ashish.is@lostca.se> +;;; Copyright © 2025 Philippe Swartvagher <phil.swart@gmx.fr> ;;; ;;; This file is part of GNU Guix. ;;; @@ -9538,6 +9539,41 @@ HTTP. It can proxy to any domain in order to facilitate linking to the rest of Geminispace, but it defaults to a specific domain.") (license license:gpl3+))) +(define-public maildir-rank-addr + (package + (name "maildir-rank-addr") + (version "1.4.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/ferdinandyb/maildir-rank-addr") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19dhlfb5d8sqayfyv3pj3rnrw3gbkq9vzj7gwcj2g3whx1ayy86y")))) + (build-system go-build-system) + (arguments + (list + #:install-source? #f + #:import-path "github.com/ferdinandyb/maildir-rank-addr")) + (native-inputs + (list go-github-com-emersion-go-message + go-github-com-emersion-go-mbox + go-github-com-mitchellh-go-homedir + go-github-com-spf13-pflag + go-github-com-spf13-viper + go-github-com-stretchr-testify + go-golang-org-x-text)) + (home-page "https://github.com/ferdinandyb/maildir-rank-addr") + (synopsis "Generate an addressbook from locally available email") + (description + "This package implements a functionality to generate a ranked addressbook +from your locally available email. It can be used in MUA's like +@url{http://aerc-mail.org, aerc} or @url{http://www.mutt.org/,mutt} by +grepping the list.") + (license license:expat))) + (define-public libzim (package (name "libzim") |