all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: "\( via Guix-patches" via <guix-patches@gnu.org>
To: 56949@debbugs.gnu.org
Cc: "\(unmatched-parenthesis" <paren@disroot.org>
Subject: [bug#56949] [PATCH 41/41] gnu: Add aerc.
Date: Wed,  3 Aug 2022 13:04:39 +0100	[thread overview]
Message-ID: <20220803120439.5108-41-paren@disroot.org> (raw)
In-Reply-To: <20220803120439.5108-1-paren@disroot.org>

From: "(unmatched-parenthesis" <paren@disroot.org>

* gnu/packages/mail.scm (aerc): New variable.
---
 gnu/packages/mail.scm | 85 +++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 85 insertions(+)

diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm
index ca4b3e819e..11dfcc02a5 100644
--- a/gnu/packages/mail.scm
+++ b/gnu/packages/mail.scm
@@ -49,6 +49,7 @@
 ;;; Copyright © 2022 Thiago Jung Bauermann <bauermann@kolabnow.com>
 ;;; Copyright © 2022 Guillaume Le Vaillant <glv@posteo.net>
 ;;; Copyright © 2022 muradm <mail@muradm.net>
+;;; Copyright © 2022 ( <paren@disroot.org>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -4678,3 +4679,87 @@ (define-public smtpmail
 mailserver on their machine.  It enables these users to send their mail over a
 remote SMTP server.")
     (license license:gpl2+)))
+
+(define-public aerc
+  (package
+    (name "aerc")
+    (version "0.11.0")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://git.sr.ht/~rjarry/aerc")
+                    (commit version)))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "05q7ilmjl9mfd0a72ayvl8f1fqxk27xmxbrw1dspbhc6vc27lj63"))))
+    (build-system go-build-system)
+    (arguments
+     (list #:import-path "git.sr.ht/~rjarry/aerc"
+           #:install-source? #f ; end-user application
+           #:build-flags
+           #~(list "-tags=notmuch" "-ldflags"
+                   (string-append "-X main.Version=" #$version
+                                  " -X git.sr.ht/~rjarry/aerc/config.shareDir="
+                                  #$output "/share/aerc"))
+           #:phases
+           #~(modify-phases %standard-phases
+              (add-after 'build 'doc
+                (lambda* (#:key import-path #:allow-other-keys)
+                  (with-directory-excursion (string-append "src/" import-path)
+                    (invoke "make" "doc"))))
+              (replace 'install
+                (lambda* (#:key outputs import-path #:allow-other-keys)
+                  (let ((out (assoc-ref outputs "out")))
+                    (with-directory-excursion (string-append "src/" import-path)
+                      (invoke "make" "install"
+                              (string-append "PREFIX=" out)))))))))
+    (inputs (list go-github-com-zenhack-go-notmuch
+                  go-golang-org-x-oauth2
+                  go-github-com-xo-terminfo
+                  go-github-com-stretchr-testify
+                  go-github-com-riywo-loginshell
+                  go-github-com-pkg-errors
+                  go-github-com-mitchellh-go-homedir
+                  go-github-com-miolini-datacounter
+                  go-github-com-mattn-go-runewidth
+                  go-github-com-mattn-go-isatty
+                  go-github-com-lithammer-fuzzysearch
+                  go-github-com-kyoh86-xdg
+                  go-github-com-imdario-mergo
+                  go-github-com-google-shlex
+                  go-github-com-go-ini-ini
+                  go-github-com-gdamore-tcell
+                  go-github-com-gatherstars-com-jwz
+                  go-github-com-fsnotify-fsnotify
+                  go-github-com-emersion-go-smtp
+                  go-github-com-emersion-go-sasl
+                  go-github-com-emersion-go-pgpmail
+                  go-github-com-emersion-go-message
+                  go-github-com-emersion-go-maildir
+                  go-github-com-emersion-go-imap-sortthread
+                  go-github-com-emersion-go-imap
+                  go-github-com-emersion-go-msgauth
+                  go-github-com-ddevault-go-libvterm
+                  go-github-com-danwakefield-fnmatch
+                  go-github-com-creack-pty
+                  go-github-com-arran4-golang-ical
+                  go-github-com-protonmail-go-crypto
+                  go-github-com-syndtr-goleveldb-leveldb
+                  go-git-sr-ht--sircmpwn-getopt))
+    (native-inputs (list scdoc))
+    (home-page "https://git.sr.ht/~rjarry/aerc")
+    (synopsis "Email client for the terminal")
+    (description "@code{aerc} is a textual email client for terminals. It
+features:
+@enumerate
+@item First-class support for using patches and @code{git send-email}
+@item Vi-like keybindings and command system
+@item A built-in console
+@item Support for multiple accounts
+@end enumerate")
+    ;; The license given is MIT/Expat; however, linking against notmuch
+    ;; effectively makes it GPL-3.0-or-later. See this thread discussing it:
+    ;; <https://lists.sr.ht/~rjarry/aerc-devel/%3Cb5cb213a7d0c699a886971658c2476
+    ;; 1073eb2391%40disroot.org%3E>
+    (license license:gpl3+)))
-- 
2.37.1





  parent reply	other threads:[~2022-08-03 12:13 UTC|newest]

Thread overview: 44+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-08-03 12:03 [bug#56909] [PATCH 01/41] gnu: Add go-github-com-zenhack-go-notmuch ( via Guix-patches via
2022-08-03 12:04 ` [bug#56914] [PATCH 02/41] gnu: Add go-github-com-creack-pty ( via Guix-patches via
2022-08-03 12:04 ` [bug#56910] [PATCH 03/41] gnu: Add go-google-golang-org-protobuf ( via Guix-patches via
2022-08-03 12:04 ` [bug#56911] [PATCH 04/41] gnu: Add go-github-com-xo-terminfo ( via Guix-patches via
2022-08-03 12:04 ` [bug#56912] [PATCH 05/41] gnu: Add go-github-com-riywo-loginshell ( via Guix-patches via
2022-08-03 12:04 ` [bug#56913] [PATCH 06/41] gnu: Add go-github-com-miolini-datacounter ( via Guix-patches via
2022-08-03 12:04 ` [bug#56915] [PATCH 07/41] gnu: Add go-github-com-kyoh86-xdg ( via Guix-patches via
2022-08-03 12:04 ` [bug#56916] [PATCH 08/41] gnu: Add go-github-com-go-ini-ini ( via Guix-patches via
2022-08-03 12:04 ` [bug#56917] [PATCH 09/41] gnu: Add go-github-com-lucasb-eyer-go-colorful ( via Guix-patches via
2022-08-03 12:04 ` [bug#56918] [PATCH 10/41] gnu: Add go-github-com-rivo-uniseg ( via Guix-patches via
2022-08-03 12:04 ` [bug#56919] [PATCH 11/41] gnu: Add go-github-com-rivo-tview ( via Guix-patches via
2022-08-03 12:04 ` [bug#56920] [PATCH 12/41] gnu: Add go-github-com-ssor-bom ( via Guix-patches via
2022-08-03 12:04 ` [bug#56921] [PATCH 13/41] gnu: Add go-github-com-gogs-chardet ( via Guix-patches via
2022-08-03 12:04 ` [bug#56922] [PATCH 14/41] gnu: Add go-github-com-jaytaylor-html2text ( via Guix-patches via
2022-08-03 12:04 ` [bug#56923] [PATCH 15/41] gnu: Add go-github-com-go-test-deep ( via Guix-patches via
2022-08-03 12:04 ` [bug#56924] [PATCH 16/41] gnu: Add go-github-com-cention-sany-utf7 ( via Guix-patches via
2022-08-03 12:04 ` [bug#56925] [PATCH 17/41] gnu: Add go-github-com-jhillyerd-enmime ( via Guix-patches via
2022-08-03 12:04 ` [bug#56926] [PATCH 18/41] gnu: Add go-github-com-gatherstars-com-jwz ( via Guix-patches via
2022-08-03 12:04 ` [bug#56927] [PATCH 19/41] gnu: Add go-github-com-emersion-go-textwrapper ( via Guix-patches via
2022-08-03 12:04 ` [bug#56928] [PATCH 20/41] gnu: Add go-github-com-emersion-go-message ( via Guix-patches via
2022-08-03 12:04 ` [bug#56934] [PATCH 21/41] gnu: Add go-github-com-emersion-go-sasl ( via Guix-patches via
2022-08-03 12:04 ` [bug#56930] [PATCH 22/41] gnu: Add go-github-com-emersion-go-imap ( via Guix-patches via
2022-08-03 12:04 ` [bug#56929] [PATCH 23/41] gnu: Add go-github-com-emersion-go-imap-sortthread ( via Guix-patches via
2022-08-03 12:04 ` [bug#56931] [PATCH 24/41] gnu: Add go-github-com-protonmail-go-crypto ( via Guix-patches via
2022-08-03 12:04 ` [bug#56933] [PATCH 25/41] gnu: Add go-github-com-emersion-go-pgpmail ( via Guix-patches via
2022-08-03 12:04 ` [bug#56936] [PATCH 26/41] gnu: Add go-github-com-emersion-go-smtp ( via Guix-patches via
2022-08-03 12:04 ` [bug#56935] [PATCH 27/41] gnu: Add go-github-com-niemeyer-pretty ( via Guix-patches via
2022-08-03 12:04 ` [bug#56932] [PATCH 28/41] gnu: Add go-github-com-arran4-golang-ical ( via Guix-patches via
2022-08-03 12:04 ` [bug#56941] [PATCH 29/41] gnu: Add go-git-sr-ht--sircmpwn-getopt ( via Guix-patches via
2022-08-03 12:04 ` [bug#56938] [PATCH 30/41] gnu: Add go-github-com-lithammer-fuzzysearch ( via Guix-patches via
2022-08-03 12:04 ` [bug#56939] [PATCH 31/41] gnu: Add go-github-com-google-shlex ( via Guix-patches via
2022-08-03 15:38   ` [bug#55903] " Maxime Devos
2022-08-03 18:37     ` ( via Guix-patches via
2022-08-03 12:04 ` [bug#56937] [PATCH 32/41] gnu: Add go-github-com-emersion-go-maildir ( via Guix-patches via
2022-08-03 12:04 ` [bug#56942] [PATCH 33/41] gnu: Add go-github-com-emersion-go-milter ( via Guix-patches via
2022-08-03 12:04 ` [bug#56940] [PATCH 34/41] gnu: Add go-github-com-emersion-go-msgauth ( via Guix-patches via
2022-08-03 12:04 ` [bug#56943] [PATCH 35/41] gnu: Add go-github-com-onsi-gomega ( via Guix-patches via
2022-08-03 12:04 ` [bug#56944] [PATCH 36/41] gnu: Add go-gopkg-in-tomb-v1 ( via Guix-patches via
2022-08-03 12:04 ` [bug#56945] [PATCH 37/41] gnu: Add go-github-com-nxadm-tail ( via Guix-patches via
2022-08-03 12:04 ` [bug#56946] [PATCH 38/41] gnu: Add go-github-com-go-task-slim-sprig ( via Guix-patches via
2022-08-03 12:04 ` [bug#56947] [PATCH 39/41] gnu: Add go-github-com-onsi-ginkgo ( via Guix-patches via
2022-08-03 12:04 ` [bug#56948] [PATCH 40/41] gnu: Add go-github-com-syndtr-goleveldb-leveldb ( via Guix-patches via
2022-08-03 12:04 ` ( via Guix-patches via [this message]
2022-08-03 12:25 ` [bug#56909] [PATCH 01/41] gnu: Add go-github-com-zenhack-go-notmuch ( via Guix-patches via

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20220803120439.5108-41-paren@disroot.org \
    --to=guix-patches@gnu.org \
    --cc=56949@debbugs.gnu.org \
    --cc=paren@disroot.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.