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 08cc4e9852 gnu: Add emacs-plz-see.
08cc4e9852 is described below
commit 08cc4e9852e5a863d294f675b87f498536bca640
Author: Joeke de Graaf <[email protected]>
AuthorDate: Wed Aug 19 19:33:09 2026 +0200
gnu: Add emacs-plz-see.
* gnu/packages/emacs-xyz.scm (emacs-plz-see): New variable.
Merges guix/guix!10667.
Signed-off-by: Cayetano Santos <[email protected]>
---
gnu/packages/emacs-xyz.scm | 27 ++++++++++++++++++++++++++-
1 file changed, 26 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index a1a606d31b..90bebdd8ab 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -118,7 +118,7 @@
;;; Copyright © 2022 Hilton Chain <[email protected]>
;;; Copyright © 2022, 2024, 2025 Nicolas Graves <[email protected]>
;;; Copyright © 2022 Thiago Jung Bauermann <[email protected]>
-;;; Copyright © 2022 Joeke de Graaf <[email protected]>
+;;; Copyright © 2022, 2026 Joeke de Graaf <[email protected]>
;;; Copyright © 2023, 2025 Simon Streit <[email protected]>
;;; Copyright © 2023, 2025 John Kehayias <[email protected]>
;;; Copyright © 2023 Ivan Vilata-i-Balaguer <[email protected]>
@@ -27302,6 +27302,31 @@ a parser, and an event source implementation for the
@acronym{SSE, Server Sent
Event} protocol.")
(license license:gpl3+)))
+(define-public emacs-plz-see
+ ;; upstream does not have tags or releases
+ (let ((commit "c55e6aa2971caad582df1d449e0f57604250cae1"))
+ (package
+ (name "emacs-plz-see")
+ (version "0.1")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/astoff/plz-see.el")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1wwqr9n7d273y2iq86n6grrzn1xq2ddh6v8sk9yjqs5k7hnsa37z"))))
+ (build-system emacs-build-system)
+ (arguments (list #:tests? #f)) ; no tests
+ (propagated-inputs (list emacs-plz))
+ (home-page "https://github.com/astoff/plz-see.el")
+ (synopsis "Interactive HTTP client")
+ (description
+ "This package provides an interactive HTTP client for Emacs based
+on the @code{plz} library.")
+ (license license:gpl3+))))
+
(define-public emacs-ement
(package
(name "emacs-ement")