diff options
author | Cayetano Santos <csantosb@inventati.org> | 2025-04-03 13:45:20 +0200 |
---|---|---|
committer | Ian Eure <ian@retrospec.tv> | 2025-04-05 12:04:12 -0700 |
commit | 5b528fd3072bb46d5f101ef052fefe576d9c726b (patch) | |
tree | 345ac3cc02d10af5ed1656e201cc8b49cfd47d7c | |
parent | 89be19c0cac81e8f14b3dca5d33b99e6f2b3d986 (diff) | |
download | guix-5b528fd3072bb46d5f101ef052fefe576d9c726b.tar.gz guix-5b528fd3072bb46d5f101ef052fefe576d9c726b.zip |
gnu: emacs-corfu: Update to 2.0.
* gnu/packages/emacs-xyz.scm (emacs-corfu): Update to 2.0.
Change-Id: Ibebd4b221984e814fa970802fd922f02e8d4b779
Signed-off-by: Ian Eure <ian@retrospec.tv>
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index cc842140cc..0861646323 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -5605,7 +5605,7 @@ of bibliographic references.") (define-public emacs-corfu (package (name "emacs-corfu") - (version "1.7") + (version "2.0") (source (origin (method git-fetch) @@ -5614,10 +5614,11 @@ of bibliographic references.") (commit version))) (file-name (git-file-name name version)) (sha256 - (base32 "0yyc64bfqpsjs5iwgwxm171sg85al4mzj4pv3qd4cpmkgmamrrv3")))) + (base32 "15vmhbwpjgvc9ly8icrjf74jhbplhigfyfa762s45ipnrq6gyixq")))) (build-system emacs-build-system) (arguments (list + #:tests? #f ; there are no tests #:phases #~(modify-phases %standard-phases ;; Move the extensions source files to the top level, which is included @@ -5628,15 +5629,12 @@ of bibliographic references.") (for-each (lambda (f) (rename-file f (basename f))) el-files)))) - (add-after 'install 'makeinfo + (add-after 'unpack 'makeinfo (lambda _ - (invoke "emacs" - "--batch" + (invoke "emacs" "--batch" "--eval=(require 'ox-texinfo)" "--eval=(find-file \"README.org\")" - "--eval=(org-texinfo-export-to-info)") - (install-file "corfu.info" - (string-append #$output "/share/info"))))))) + "--eval=(org-texinfo-export-to-info)")))))) (native-inputs (list texinfo)) (propagated-inputs (list emacs-compat)) |