me
/
guix
Archived
1
0
Fork 0

gnu: emacs-vertico: Update to 1.1.

* gnu/packages/emacs-xyz.scm (emacs-vertico): Update to 1.1.
[propagated-inputs]: Add EMACS-COMPAT.
Nicolas Goaziou 2023-02-18 11:53:27 +01:00
parent ecafebe21c
commit 58cb4e28d3
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 6 additions and 4 deletions

View File

@ -34431,7 +34431,7 @@ and preferred services can easily be configured.")
(define-public emacs-vertico
(package
(name "emacs-vertico")
(version "1.0")
(version "1.1")
(source
(origin
(method git-fetch)
@ -34440,13 +34440,13 @@ and preferred services can easily be configured.")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32 "0g2zy70gks24g7i4qj1ijx57g016svbymb8l493j81c4bhc88mjl"))))
(base32 "0djc1im6caa67aq0bi8d607ycb1lq4lsirfqsx8kqbfl46852f60"))))
(build-system emacs-build-system)
(arguments
`(#:phases
(modify-phases %standard-phases
;; Move the extensions source files to the top level, which is included in
;; the EMACSLOADPATH.
;; Move the extensions source files to the top level, which is
;; included in the EMACSLOADPATH.
(add-after 'unpack 'move-source-files
(lambda _
(let ((el-files (find-files "./extensions" ".*\\.el$")))
@ -34455,6 +34455,8 @@ and preferred services can easily be configured.")
el-files)))))))
(native-inputs
(list texinfo))
(propagated-inputs
(list emacs-compat))
(home-page "https://github.com/minad/vertico")
(synopsis "Vertical interactive completion")
(description