ngz pushed a commit to branch master
in repository guix.

commit bbe732e59b3b7d93ff5e28844a1ea9d23059f7cc
Author: Nicolas Goaziou <[email protected]>
AuthorDate: Sat Oct 12 11:42:55 2024 +0200

    gnu: emacs-consult-eglot: Update to 0.3.0.
    
    * gnu/packages/emacs-xyz.scm (emacs-consult-eglot): Update to 0.3.0.
    
    Change-Id: I281e1ff27af3ba880a2e4e5b7e8ada59eddb1412
---
 gnu/packages/emacs-xyz.scm | 38 ++++++++++++++++++--------------------
 1 file changed, 18 insertions(+), 20 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 301d597f8c..abae239d1c 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -12810,28 +12810,26 @@ versions utilizing Consult's internal API.")
       (license license:gpl3+))))
 
 (define-public emacs-consult-eglot
-  (let ((revision "0")
-        (commit "db9d41c9812a5a8a7b9a22fa7f3c314e37584d41"))
-    (package
-      (name "emacs-consult-eglot")
-      (version (git-version "0.2.0" revision commit))
-      (source (origin
-                (method git-fetch)
-                (uri (git-reference
-                      (url "https://github.com/mohkale/consult-eglot";)
-                      (commit commit)))
-                (sha256
-                 (base32
-                  "1xcv9lj4r9s584gfkbqi9dmi045a3phb2x63fzfd7vpdy15xg47n"))
-                (file-name (git-file-name name version))))
-      (build-system emacs-build-system)
-      (propagated-inputs (list emacs-consult emacs-eglot))
-      (home-page "https://github.com/mohkale/consult-eglot";)
-      (synopsis "Consulting-read interface for eglot")
-      (description "This package acts as a parallel of consult-lsp for eglot 
and
+  (package
+    (name "emacs-consult-eglot")
+    (version "0.3.0")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/mohkale/consult-eglot";)
+                    (commit (string-append "v" version))))
+              (sha256
+               (base32
+                "0mn9d87m05bhqrw7sscx4a2a5h7gkqyhv06a80ky9vbzlfjfk6hh"))
+              (file-name (git-file-name name version))))
+    (build-system emacs-build-system)
+    (propagated-inputs (list emacs-consult emacs-eglot))
+    (home-page "https://github.com/mohkale/consult-eglot";)
+    (synopsis "Consulting-read interface for eglot")
+    (description "This package acts as a parallel of consult-lsp for eglot and
 provides a front-end interface for the workspace/symbols LSP procedure
 call.")
-      (license license:gpl3+))))
+    (license license:gpl3+)))
 
 (define-public emacs-consult-flycheck
   (package

Reply via email to