From 08cc4e9852e5a863d294f675b87f498536bca640 Mon Sep 17 00:00:00 2001 From: Joeke de Graaf Date: Wed, 19 Aug 2026 19:33:09 +0200 Subject: gnu: Add emacs-plz-see. * gnu/packages/emacs-xyz.scm (emacs-plz-see): New variable. Merges guix/guix!10667. Signed-off-by: Cayetano Santos --- gnu/packages/emacs-xyz.scm | 27 ++++++++++++++++++++++++++- 1 file changed, 26 insertions(+), 1 deletion(-) (limited to 'gnu') 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 @@ ;;; Copyright © 2022 Hilton Chain ;;; Copyright © 2022, 2024, 2025 Nicolas Graves ;;; Copyright © 2022 Thiago Jung Bauermann -;;; Copyright © 2022 Joeke de Graaf +;;; Copyright © 2022, 2026 Joeke de Graaf ;;; Copyright © 2023, 2025 Simon Streit ;;; Copyright © 2023, 2025 John Kehayias ;;; Copyright © 2023 Ivan Vilata-i-Balaguer @@ -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") -- cgit v1.2.3