guix-commits
[Top][All Lists]
Advanced

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

02/06: gnu: vim-vader: Use vim-build-system.


From: guix-commits
Subject: 02/06: gnu: vim-vader: Use vim-build-system.
Date: Sun, 26 Nov 2023 04:07:24 -0500 (EST)

efraim pushed a commit to branch master
in repository guix.

commit 18c3d347f5b24767093b13ece16df2b90c7894ad
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Sun Nov 26 09:55:37 2023 +0200

    gnu: vim-vader: Use vim-build-system.
    
    * gnu/packages/vim.scm (vim-vader)[build-system]: Switch to the
    vim-build-system.
    [arguments]: Remove install-plan.  Add plugin-name.
    (vim-coqtail)[arguments]: Adjust reference to vim-vader.
    
    Change-Id: I8210054e062b608706ee37a77f60969948b1c3b5
---
 gnu/packages/vim.scm | 15 +++++----------
 1 file changed, 5 insertions(+), 10 deletions(-)

diff --git a/gnu/packages/vim.scm b/gnu/packages/vim.scm
index 61ae6ffc68..2dc59af83d 100644
--- a/gnu/packages/vim.scm
+++ b/gnu/packages/vim.scm
@@ -492,8 +492,9 @@ trouble using them, because you do not have to remember 
each snippet name.")
                  (display "Running Vim unit tests.\n")
                  (let* ((vim-vader (assoc-ref (or native-inputs inputs)
                                               "vim-vader"))
-                        (vader-path (string-append vim-vader
-                                                   "/share/vim/vimfiles")))
+                        (vader-path (string-append
+                                      vim-vader
+                                      
"/share/vim/vimfiles/pack/guix/start/vader")))
                    (with-directory-excursion "tests/vim"
                      (setenv "VADER_PATH" vader-path)
                      (invoke "vim" "-E" "-Nu" "vimrc"
@@ -1505,15 +1506,9 @@ operations are available for most filetypes.")
                 (sha256
                  (base32
                   "179dbbqdyl6qf6jdb6kdazn3idz17m1h2n88rlggb1wnly74vjin"))))
-      (build-system copy-build-system)
+      (build-system vim-build-system)
       (arguments
-       '(#:install-plan
-             '(("autoload" "share/vim/vimfiles/")
-               ("doc" "share/vim/vimfiles/")
-               ("ftdetect" "share/vim/vimfiles/")
-               ("ftplugin" "share/vim/vimfiles/")
-               ("plugin" "share/vim/vimfiles/")
-               ("syntax" "share/vim/vimfiles/"))
+       '(#:plugin-name "vader"
          #:phases
          (modify-phases %standard-phases
            (add-before 'install 'check



reply via email to

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