From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:42632) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fUK66-0005Xb-T7 for guix-patches@gnu.org; Sat, 16 Jun 2018 18:55:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fUK62-0007fM-1V for guix-patches@gnu.org; Sat, 16 Jun 2018 18:55:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:44365) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fUK61-0007fI-Ud for guix-patches@gnu.org; Sat, 16 Jun 2018 18:55:01 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fUK61-00043H-O0 for guix-patches@gnu.org; Sat, 16 Jun 2018 18:55:01 -0400 Subject: [bug#31867] [PATCH] gnu: Add emacs-mu4e-conversation. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:42541) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fUK5M-0005Bw-4G for guix-patches@gnu.org; Sat, 16 Jun 2018 18:54:22 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fUK5H-0007DE-9o for guix-patches@gnu.org; Sat, 16 Jun 2018 18:54:20 -0400 Received: from mail-wm0-x22c.google.com ([2a00:1450:400c:c09::22c]:39740) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fUK5H-0007CH-2C for guix-patches@gnu.org; Sat, 16 Jun 2018 18:54:15 -0400 Received: by mail-wm0-x22c.google.com with SMTP id p11-v6so9371822wmc.4 for ; Sat, 16 Jun 2018 15:54:14 -0700 (PDT) Received: from localhost.localdomain ([37.171.5.73]) by smtp.gmail.com with ESMTPSA id s9-v6sm3687504wmc.34.2018.06.16.15.54.12 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sat, 16 Jun 2018 15:54:13 -0700 (PDT) From: Pierre Neidhardt Date: Sun, 17 Jun 2018 00:54:08 +0200 Message-Id: <20180616225408.21409-1-ambrevar@gmail.com> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 31867@debbugs.gnu.org * gnu/packages/emacs.scm (emacs-mu4e-conversation): New variable. --- gnu/packages/emacs.scm | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 4999dda55..e89d8bc90 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -11264,3 +11264,34 @@ file.") "@code{wgrep-helm} allows you to edit a @code{helm-grep-mode} buffer and apply those changes to the file buffer.") (license license:gpl3+)))) + +(define-public emacs-mu4e-conversation + (let ((commit "b60d6bd27d7220c3dd041ff2a090e29f2166a319")) + (package + (name "emacs-mu4e-conversation") + (version (git-version "20180615" "1" commit)) + (source + (origin + (method url-fetch) + (uri (string-append + "https://gitlab.com/Ambrevar/mu4e-conversation/" + "repository/archive.tar.gz?ref=" + commit)) + (file-name (string-append name "-" version "-checkout")) + (sha256 + (base32 + "0x8kmi0rmbaaxn5zicm1f9yb8ynxi8074hi2n0rvymlfpxbpn0ma")))) + (build-system emacs-build-system) + (propagated-inputs + `(("mu" ,mu))) + (home-page + "https://gitlab.com/Ambrevar/mu4e-conversation") + (synopsis + "Show a complete thread in a single buffer") + (description + "This package offers an alternate view to mu4e e-mail display. It +shows all e-mails of a thread in a single view, where each correspondant has +their own face. Threads can be displayed linearly (in which case e-mails are +displayed in chronological order) or as an Org document where the node tree +maps the thread tree.") + (license license:gpl3+)))) -- 2.17.1