summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoeke de Graaf <joeke@posteo.net>2026-08-19 19:33:09 +0200
committerCayetano Santos <csantosb@inventati.org>2026-08-26 13:42:22 +0200
commit08cc4e9852e5a863d294f675b87f498536bca640 (patch)
tree2be3d9ace25f619f895d8f508f518dfa7a1d6a02
parent272d526d58e6eeb215dd0232e006846de78ed6e1 (diff)
gnu: Add emacs-plz-see.
* gnu/packages/emacs-xyz.scm (emacs-plz-see): New variable. Merges guix/guix!10667. Signed-off-by: Cayetano Santos <csantosb@inventati.org>
-rw-r--r--gnu/packages/emacs-xyz.scm27
1 files changed, 26 insertions, 1 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index a1a606d31bb..90bebdd8ab6 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -118,7 +118,7 @@
118;;; Copyright © 2022 Hilton Chain <hako@ultrarare.space> 118;;; Copyright © 2022 Hilton Chain <hako@ultrarare.space>
119;;; Copyright © 2022, 2024, 2025 Nicolas Graves <ngraves@ngraves.fr> 119;;; Copyright © 2022, 2024, 2025 Nicolas Graves <ngraves@ngraves.fr>
120;;; Copyright © 2022 Thiago Jung Bauermann <bauermann@kolabnow.com> 120;;; Copyright © 2022 Thiago Jung Bauermann <bauermann@kolabnow.com>
121;;; Copyright © 2022 Joeke de Graaf <joeke@posteo.net> 121;;; Copyright © 2022, 2026 Joeke de Graaf <joeke@posteo.net>
122;;; Copyright © 2023, 2025 Simon Streit <simon@netpanic.org> 122;;; Copyright © 2023, 2025 Simon Streit <simon@netpanic.org>
123;;; Copyright © 2023, 2025 John Kehayias <john.kehayias@protonmail.com> 123;;; Copyright © 2023, 2025 John Kehayias <john.kehayias@protonmail.com>
124;;; Copyright © 2023 Ivan Vilata-i-Balaguer <ivan@selidor.net> 124;;; Copyright © 2023 Ivan Vilata-i-Balaguer <ivan@selidor.net>
@@ -27302,6 +27302,31 @@ a parser, and an event source implementation for the @acronym{SSE, Server Sent
27302Event} protocol.") 27302Event} protocol.")
27303 (license license:gpl3+))) 27303 (license license:gpl3+)))
27304 27304
27305(define-public emacs-plz-see
27306 ;; upstream does not have tags or releases
27307 (let ((commit "c55e6aa2971caad582df1d449e0f57604250cae1"))
27308 (package
27309 (name "emacs-plz-see")
27310 (version "0.1")
27311 (source
27312 (origin
27313 (method git-fetch)
27314 (uri (git-reference
27315 (url "https://github.com/astoff/plz-see.el")
27316 (commit commit)))
27317 (file-name (git-file-name name version))
27318 (sha256
27319 (base32 "1wwqr9n7d273y2iq86n6grrzn1xq2ddh6v8sk9yjqs5k7hnsa37z"))))
27320 (build-system emacs-build-system)
27321 (arguments (list #:tests? #f)) ; no tests
27322 (propagated-inputs (list emacs-plz))
27323 (home-page "https://github.com/astoff/plz-see.el")
27324 (synopsis "Interactive HTTP client")
27325 (description
27326 "This package provides an interactive HTTP client for Emacs based
27327on the @code{plz} library.")
27328 (license license:gpl3+))))
27329
27305(define-public emacs-ement 27330(define-public emacs-ement
27306 (package 27331 (package
27307 (name "emacs-ement") 27332 (name "emacs-ement")