guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: emacs-vertico: Add new phase after unpack.


From: guix-commits
Subject: branch master updated: gnu: emacs-vertico: Add new phase after unpack.
Date: Thu, 26 Aug 2021 16:04:36 -0400

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

bricewge pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new b4d132f  gnu: emacs-vertico: Add new phase after unpack.
b4d132f is described below

commit b4d132f98e03fae559db832e88897f1e166c4d47
Author: Alexandr Vityazev <avityazev@posteo.org>
AuthorDate: Sat Aug 21 21:58:41 2021 +0000

    gnu: emacs-vertico: Add new phase after unpack.
    
    * gnu/packages/emacs-xyz.scm (emacs-vertico)[arguments]<phases>:
    After the unpack phase add a move-source-files phase.
---
 gnu/packages/emacs-xyz.scm | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 3657d2b..5324404 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -29187,6 +29187,18 @@ and preferred services can easily be configured.")
        (sha256
         (base32 "0rddk76ih44b574lsr6d6r9wa2l7c9zlb9kcyw5xvly17ciiq16h"))))
     (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.
+         (add-after 'unpack 'move-source-files
+           (lambda _
+             (let ((el-files (find-files "./extensions" ".*\\.el$")))
+               (for-each (lambda (f)
+                           (rename-file f (basename f)))
+                         el-files))
+             #t)))))
     (native-inputs
      `(("texinfo" ,texinfo)))
     (home-page "https://github.com/minad/vertico";)



reply via email to

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