diff options
author | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2023-10-19 07:09:54 +0200 |
---|---|---|
committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2023-11-01 20:44:28 +0100 |
commit | 5a780b1b1a30f606092c27fb42e66a5e904fc1e9 (patch) | |
tree | 2852d756d62944c92a885db98ccc2e8a5f1c50c1 /gnu/packages/guile-xyz.scm | |
parent | c36a91284b02aa8be05dd8ceaf4b76973d6ca04e (diff) | |
download | guix-5a780b1b1a30f606092c27fb42e66a5e904fc1e9.tar guix-5a780b1b1a30f606092c27fb42e66a5e904fc1e9.tar.gz |
gnu: guile-wisp: Build autoloads before installing them.
* gnu/packages/guile-xyz.scm (guile-wisp)[#:phases]: Move ‘make-autoloads’
after ‘unpack’.
Diffstat (limited to 'gnu/packages/guile-xyz.scm')
-rw-r--r-- | gnu/packages/guile-xyz.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm index 0eec87f768..75f7b1a271 100644 --- a/gnu/packages/guile-xyz.scm +++ b/gnu/packages/guile-xyz.scm @@ -2182,12 +2182,12 @@ user which package sets would they like to install from it.") (invoke "guild" "compile" "-L" module-dir file "-o" go))) (find-files module-dir "\\.scm$"))))) + (add-after 'unpack 'make-autoloads + (assoc-ref emacs:%standard-phases 'make-autoloads)) (add-after 'install 'install-emacs-files (assoc-ref emacs:%standard-phases 'install)) (add-after 'install-emacs-files 'compile-emacs-files - (assoc-ref emacs:%standard-phases 'build)) - (add-after 'compile-emacs-files 'make-autoloads - (assoc-ref emacs:%standard-phases 'make-autoloads))))) + (assoc-ref emacs:%standard-phases 'build))))) (home-page "https://www.draketo.de/english/wisp") (inputs (list guile-3.0)) |