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 38e11fb1b7 gnu: Add emacs-gptel-prompts.
38e11fb1b7 is described below

commit 38e11fb1b7757d744691b131e36c9c2fe80211a5
Author: Cayetano Santos <[email protected]>
AuthorDate: Mon Jul 28 13:52:08 2025 +0200

    gnu: Add emacs-gptel-prompts.
    
    * gnu/packages/emacs-xyz.scm (emacs-gptel-prompts): New variable.
    
    Change-Id: I8a36b0659e7e17c07bf94c97dc55ad6a12009667
    Signed-off-by: Danny Milosavljevic <[email protected]>
---
 gnu/packages/emacs-xyz.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 9669967ba4..8953aed271 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -691,6 +691,32 @@ just one-off queries and multiple independent sessions.  
It requires an OpenAI
 API key.")
     (license license:gpl3+)))
 
+(define-public emacs-gptel-prompts
+  ;; No releases.
+  (let ((commit "deca98e1aff1b0570cd1672addfb6dcc74402332")
+        (revision "0"))
+    (package
+      (name "emacs-gptel-prompts")
+      (version (git-version "1.0" revision commit))
+      (source
+       (origin
+         (uri (git-reference
+                (url "https://github.com/jwiegley/gptel-prompts/";)
+                (commit commit)))
+         (method git-fetch)
+         (sha256
+          (base32 "0wh2ydiy1k6j0hdw7n7qyzx6c2g4mcpd3gp79h1ay1hh0f85596b"))
+         (file-name (git-file-name name version))))
+      (build-system emacs-build-system)
+      (arguments (list #:tests? #f))    ;no tests
+      (propagated-inputs (list emacs-gptel))
+      (home-page "https://github.com/jwiegley/gptel-prompts/";)
+      (synopsis "Alternative Gptel directives management")
+      (description
+       "This package offers an advanced way to manage Gptel directives, using
+files rather than customizing the variable directly.")
+      (license license:gpl2+))))
+
 (define-public emacs-gptel-quick
   (let ((commit "d7a3aedefdc656a136d5664f2dac165a1f6ebf0e")
         (revision "1"))

Reply via email to