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 778f5c17c3 gnu: Add emacs-elysium.
778f5c17c3 is described below

commit 778f5c17c3e81a452704f56c0f013243655e19f3
Author: Cayetano Santos <[email protected]>
AuthorDate: Thu Nov 27 10:38:47 2025 +0100

    gnu: Add emacs-elysium.
    
    * gnu/packages/emacs-xyz.scm (emacs-elysium): New variable.
    
    Change-Id: I2c82b55bfce522580db5d20a40a164ce9e2eab56
---
 gnu/packages/emacs-xyz.scm | 32 ++++++++++++++++++++++++++++++++
 1 file changed, 32 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 74c1deeb8c..0b7fc6048c 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -40556,6 +40556,38 @@ from a starlit sky.")
  for the Elixir programming language.")
     (license license:gpl3+)))
 
+(define-public emacs-elysium
+  (let ((commit "049ad3091baf3ce578791187c5e5e4f932c26044")
+        (revision "0"))
+    (package
+      (name "emacs-elysium")
+      (version (git-version "0.0.1" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+                (url "https://github.com/lanceberge/elysium/";)
+                (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "0x1lk24xrd0jq14h4bcmp25x2brfi5rmdxigz0wj5ipf2b57vv2y"))))
+      (build-system emacs-build-system)
+      (arguments
+       (list
+        #:test-command
+        #~(list "emacs" "-Q" "--batch"
+                "-l" "test/test-elysium.el"
+                "-f" "ert-run-tests-batch-and-exit")))
+      (propagated-inputs
+       (list emacs-gptel))
+      (home-page "https://github.com/lanceberge/elysium/";)
+      (synopsis "Automatically apply @code{gptel} changes")
+      (description
+       "This package extends @code{gptel}, using that package to generate
+suggestions based on the user's request.  Those code suggestions will then
+automatically be applied to the buffer in the format of a git merge.")
+      (license license:gpl3+))))
+
 (define-public emacs-dimmer
   (let ((commit "2f915b100044e09dd647b22085e1696249c4b115")
         (revision "1"))

Reply via email to