[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#55903] [PATCH v10 41/41] gnu: Add aerc.
From: |
( |
Subject: |
[bug#55903] [PATCH v10 41/41] gnu: Add aerc. |
Date: |
Mon, 12 Sep 2022 19:43:40 +0100 |
From: "(unmatched-parenthesis" <paren@disroot.org>
* gnu/packages/mail.scm (aerc): New variable.
---
gnu/packages/mail.scm | 88 +++++++++++++++++++++++++++++++++++++++++++
1 file changed, 88 insertions(+)
diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm
index 65d8060862..98929c0fc9 100644
--- a/gnu/packages/mail.scm
+++ b/gnu/packages/mail.scm
@@ -50,6 +50,7 @@
;;; Copyright © 2022 Guillaume Le Vaillant <glv@posteo.net>
;;; Copyright © 2022 muradm <mail@muradm.net>
;;; Copyright © 2022 jgart <jgart@dismail.de>
+;;; Copyright © 2022 ( <paren@disroot.org>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -4748,3 +4749,90 @@ (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.12.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
+ "1dsj5faklhp084j4r73lccjqd0i574ikf4saqmy6gjs2p2yd36lz"))))
+ (build-system go-build-system)
+ (arguments
+ (list #:import-path "git.sr.ht/~rjarry/aerc"
+ ;; No tests.
+ #:tests? #f
+ ;; Installing the source is only necessary for Go libraries.
+ #:install-source? #f
+ #: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 build-flags #:allow-other-keys)
+ (invoke "make" "doc" "-C"
+ (string-append "src/" import-path))))
+ (replace 'install
+ (lambda* (#:key import-path build-flags #:allow-other-keys)
+ (invoke "make" "install" "-C"
+ (string-append "src/" import-path)
+ (string-append "PREFIX=" #$output)))))))
+ (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-emersion-go-mbox
+ 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.3
- [bug#55903] [PATCH v10 27/41] gnu: Add go-github-com-arran4-golang-ical., (continued)
- [bug#55903] [PATCH v10 27/41] gnu: Add go-github-com-arran4-golang-ical., (, 2022/09/12
- [bug#55903] [PATCH v10 38/41] gnu: Add go-github-com-onsi-ginkgo., (, 2022/09/12
- [bug#55903] [PATCH v10 32/41] gnu: Add go-github-com-emersion-go-milter., (, 2022/09/12
- [bug#55903] [PATCH v10 34/41] gnu: Add go-github-com-onsi-gomega., (, 2022/09/12
- [bug#55903] [PATCH v10 37/41] gnu: Add go-github-com-go-task-slim-sprig., (, 2022/09/12
- [bug#55903] [PATCH v10 28/41] gnu: Add go-git-sr-ht--sircmpwn-getopt., (, 2022/09/12
- [bug#55903] [PATCH v10 31/41] gnu: Add go-github-com-emersion-go-maildir., (, 2022/09/12
- [bug#55903] [PATCH v10 33/41] gnu: Add go-github-com-emersion-go-msgauth., (, 2022/09/12
- [bug#55903] [PATCH v10 39/41] gnu: Add go-github-com-syndtr-goleveldb-leveldb., (, 2022/09/12
- [bug#55903] [PATCH v10 35/41] gnu: Add go-gopkg-in-tomb-v1., (, 2022/09/12
- [bug#55903] [PATCH v10 41/41] gnu: Add aerc.,
( <=
- [bug#55903] [PATCH v10 40/41] gnu: Add go-github-com-emersion-go-mbox., (, 2022/09/12
- [bug#55903] [PATCH v10 36/41] gnu: Add go-github-com-nxadm-tail., (, 2022/09/12