From b8e2c8b3e18c5cafca2a76a06e868bee0f10ff3a Mon Sep 17 00:00:00 2001 From: Cayetano Santos Date: Sun, 26 Oct 2025 09:11:00 +0100 Subject: [PATCH] gnu: Add emacs-pdd. * gnu/packages/emacs-xyz.scm (emacs-pdd): New variable. Change-Id: I605eb3a33746942e6defa92ff7c258faf9964581 Signed-off-by: Liliana Marie Prikler --- gnu/packages/emacs-xyz.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index e7ff08d5e6..81664ed17a 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -42850,6 +42850,30 @@ should replace it. However, if you call them again immediately after, they restore that occurrence of the placeholder and move to the next.") (license license:gpl3+)))) +(define-public emacs-pdd + (package + (name "emacs-pdd") + (version "0.2.3") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/lorniu/pdd.el/") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0xap7i2x8mqpwr52xdqb8c6lhjmxm1d6car2533ynyr4k2fn4lw5")))) + (build-system emacs-build-system) + (arguments + (list #:tests? #f)) ;tests require networking + (home-page "https://github.com/lorniu/pdd.el") + (synopsis "HTTP requests and asynchronous operations in Emacs") + (description "@code{pdd} provides a library for HTTP requests and +asynchronous operations in Emacs. It featuring a single, consistent API that +works identically across different backends, maximizing code portability and +simplifying development.") + (license license:gpl3+))) + (define-public emacs-pddl-mode (package (name "emacs-pddl-mode")