guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: gnu: emacs-consult: Update to 0.4.


From: guix-commits
Subject: branch master updated: gnu: emacs-consult: Update to 0.4.
Date: Sat, 06 Feb 2021 04:10:38 -0500

This is an automated email from the git hooks/post-receive script.

ngz pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 896ca88  gnu: emacs-consult: Update to 0.4.
896ca88 is described below

commit 896ca880b643622017d6d141d5ab340b165b0fc0
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Sat Feb 6 10:10:10 2021 +0100

    gnu: emacs-consult: Update to 0.4.
    
    * gnu/packages/emacs-xyz.scm (emacs-consult): Update to 0.4.
---
 gnu/packages/emacs-xyz.scm | 43 ++++++++++++++++++++-----------------------
 1 file changed, 20 insertions(+), 23 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 6460e74..967ffbd 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -7170,31 +7170,28 @@ style, or as multiple word prefixes.")
     (license license:gpl3+)))
 
 (define-public emacs-consult
-  ;; There are no tagged releases upstream on GitHub, instead we are using the
-  ;; most recent commit.
-  (let ((commit "ef6bb73a4a46e686826968fa25169e2d59b9a087")
-        (revision "0"))
-    (package
-      (name "emacs-consult")
-      (version (git-version "0.1" revision commit))
-      (source
-       (origin
-         (method git-fetch)
-         (uri (git-reference
-               (url "https://github.com/minad/consult";)
-               (commit commit)))
-         (sha256
-          (base32 "00cnwg2knd820wwx6zg71rr0whpdhqm64gm3qx1mgklk79g7daih"))
-         (file-name (git-file-name name version))))
-      (build-system emacs-build-system)
-      (propagated-inputs `(("emacs-flycheck" ,emacs-flycheck)
-                           ("emacs-selectrum" ,emacs-selectrum)))
-      (home-page "https://github.com/minad/consult";)
-      (synopsis "Consulting completing-read")
-      (description "This package provides various handy commands based on the
+  (package
+    (name "emacs-consult")
+    (version "0.4")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/minad/consult";)
+             (commit version)))
+       (sha256
+        (base32 "0rn98xkf1agyjiq7jqmc7cdq5zd9x9ym7r02wyd70xshvh7gm1rf"))
+       (file-name (git-file-name name version))))
+    (build-system emacs-build-system)
+    (propagated-inputs
+     `(("emacs-flycheck" ,emacs-flycheck)
+       ("emacs-selectrum" ,emacs-selectrum)))
+    (home-page "https://github.com/minad/consult";)
+    (synopsis "Consulting completing-read")
+    (description "This package provides various handy commands based on the
 Emacs completion function completing-read, which allows to quickly select from 
a
 list of candidates.")
-      (license license:gpl3+))))
+    (license license:gpl3+)))
 
 (define-public emacs-marginalia
   ;; There are no tagged releases upstream on GitHub, instead we are using the



reply via email to

[Prev in Thread] Current Thread [Next in Thread]