This is an automated email from the git hooks/post-receive script.
guix_mirror_bot pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 84cb3fdf59 gnu: Add maildir-rank-addr.
84cb3fdf59 is described below
commit 84cb3fdf59b3352732c8cb6754851a37fc41b392
Author: Philippe SWARTVAGHER <[email protected]>
AuthorDate: Sun Jul 27 22:10:57 2025 +0200
gnu: Add maildir-rank-addr.
* gnu/packages/web.scm (maildir-rank-addr): New variable.
Change-Id: Idc29e3f7d25472ee1e3acf4bf5d892900adb11a2
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/web.scm | 36 ++++++++++++++++++++++++++++++++++++
1 file changed, 36 insertions(+)
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 <[email protected]>
;;; Copyright © 2025 Josep Bigorra <[email protected]>
;;; Copyright © 2025 Ashish SHUKLA <[email protected]>
+;;; Copyright © 2025 Philippe Swartvagher <[email protected]>
;;;
;;; 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")