1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-13 18:40:57 +02:00

gnu: emacs-consult: Update to 2.2.

* gnu/packages/emacs-xyz.scm (emacs-consult): Update to 2.2.

Change-Id: Iee7fe14d65c43b3082669dc8d0b384825e5e3b86
Signed-off-by: Ian Eure <ian@retrospec.tv>
This commit is contained in:
Cayetano Santos 2025-04-03 14:41:39 +02:00 committed by Ian Eure
parent c07aaa3da1
commit 5bf266a161
No known key found for this signature in database
GPG key ID: 8499AC88F1A71CF2

View file

@ -13769,7 +13769,7 @@ style, or as multiple word prefixes.")
(define-public emacs-consult
(package
(name "emacs-consult")
(version "2.0")
(version "2.2")
(source
(origin
(method git-fetch)
@ -13777,22 +13777,21 @@ style, or as multiple word prefixes.")
(url "https://github.com/minad/consult")
(commit version)))
(sha256
(base32 "0dvj5l6y3s292p0hi66l43g5ykbrvi1glh71n8slkayg76c8jqfp"))
(base32 "03kmdpgghbpwss8kkm0w9cprg0cws00ksamv912vryabs8c095zx"))
(file-name (git-file-name name version))))
(build-system emacs-build-system)
(arguments
(list
#:tests? #f ; there are no tests
#:phases
#~(modify-phases %standard-phases
(add-after 'install 'makeinfo
(add-after 'unpack 'makeinfo
(lambda _
(invoke "emacs"
"--batch"
"--eval=(require 'ox-texinfo)"
"--eval=(find-file \"README.org\")"
"--eval=(org-texinfo-export-to-info)")
(install-file "consult.info"
(string-append #$output "/share/info")))))))
"--eval=(org-texinfo-export-to-info)"))))))
(native-inputs (list texinfo))
(propagated-inputs (list emacs-compat))
(home-page "https://github.com/minad/consult")