[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
05/06: gnu: Add emacs-piem.
From: |
guix-commits |
Subject: |
05/06: gnu: Add emacs-piem. |
Date: |
Sat, 24 Sep 2022 14:52:55 -0400 (EDT) |
ngz pushed a commit to branch master
in repository guix.
commit f63696a007f0437813392f628b5694ac4ff2f49c
Author: zimoun <zimon.toutoune@gmail.com>
AuthorDate: Wed Sep 21 16:09:12 2022 +0200
gnu: Add emacs-piem.
* gnu/packages/emacs-xyz.scm (emacs-piem): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
---
gnu/packages/emacs-xyz.scm | 28 ++++++++++++++++++++++++++++
1 file changed, 28 insertions(+)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 6a6e00a78e..8d3fe796ab 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -7039,6 +7039,34 @@ A minor mode @code{debbugs-browse-mode} let you browse
URLs to the GNU Bug
Tracker as well as bug identifiers prepared for @code{bug-reference-mode}.")
(license license:gpl3+)))
+(define-public emacs-piem
+ (package
+ (name "emacs-piem")
+ (version "0.4.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://git.kyleam.com/piem")
+ (commit (string-append "v" version))))
+ (file-name (string-append name "-" version "-checkout"))
+ (sha256
+ (base32 "0wr6n6wvznngjdp4c0pmdr4xz05dark0kxi5svzhzxsg3rdaql3z"))))
+ (build-system emacs-build-system)
+ (propagated-inputs
+ (list b4
+ emacs-elfeed
+ emacs-notmuch
+ emacs-transient))
+ (home-page "https://docs.kyleam.com/piem")
+ (synopsis "Glue for working with public-inbox archives")
+ (description "This packages provides a collection of Emacs libraries for
+working with public-inbox archives. As much of the hard work here is already
+done by other Emacs libraries—things like mail clients, news readers, Git
+interfaces, and even web browsers—piem is mostly about bridging some of these
+parts for convenience.")
+ (license license:gpl3)))
+
(define-public emacs-ert-expectations
(package
(name "emacs-ert-expectations")
- branch master updated (d46e955d93 -> f5f8a21cc9), guix-commits, 2022/09/24
- 02/06: gnu: emacs-mentor: Update to 0.4., guix-commits, 2022/09/24
- 01/06: gnu: emacs-subed: Update to 1.0.10., guix-commits, 2022/09/24
- 04/06: gnu: emacs-perspective: Update to 2.18., guix-commits, 2022/09/24
- 06/06: gnu: emacs-slack: Update to ff46d88., guix-commits, 2022/09/24
- 03/06: gnu: emacs-ement: Update to 0.2., guix-commits, 2022/09/24
- 05/06: gnu: Add emacs-piem.,
guix-commits <=