mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: vim-vlime: Fix build.
* gnu/packages/vim.scm (vim-vlime)[arguments]: Correct order of phases. Change-Id: I449cceff6022cee481840e49b732a8bba8031a61
This commit is contained in:
parent
887401ab86
commit
2e89e9f20a
1 changed files with 9 additions and 9 deletions
|
@ -1217,6 +1217,14 @@ (define-public vim-vlime
|
|||
'(#:plugin-name "vlime"
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'install 'symlink-files
|
||||
(lambda* (#:key outputs plugin-name mode #:allow-other-keys)
|
||||
(with-directory-excursion
|
||||
(string-append (assoc-ref outputs "out")
|
||||
"/share/vim/vimfiles/pack/guix/" mode "/" plugin-name)
|
||||
(for-each (lambda (dir)
|
||||
(symlink (string-append "./vim/" dir) dir))
|
||||
(list "after" "autoload" "doc" "ftplugin" "syntax")))))
|
||||
(add-after 'symlink-files 'install-lisp-files
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(let* ((out (assoc-ref outputs "out"))
|
||||
|
@ -1226,15 +1234,7 @@ (define-public vim-vlime
|
|||
(copy-recursively "lisp" (string-append common-lisp "/source/vlime"))
|
||||
(mkdir-p (string-append common-lisp "/systems/"))
|
||||
(symlink (string-append common-lisp "/source/vlime/vlime.asd")
|
||||
(string-append common-lisp "/systems/vlime.asd")))))
|
||||
(add-after 'install 'symlink-files
|
||||
(lambda* (#:key outputs plugin-name mode #:allow-other-keys)
|
||||
(with-directory-excursion
|
||||
(string-append (assoc-ref outputs "out")
|
||||
"/share/vim/vimfiles/pack/guix/" mode "/" plugin-name)
|
||||
(for-each (lambda (dir)
|
||||
(symlink (string-append "./vim/" dir) dir))
|
||||
(list "after" "autoload" "doc" "ftplugin" "syntax"))))))))
|
||||
(string-append common-lisp "/systems/vlime.asd"))))))))
|
||||
(propagated-inputs
|
||||
(list cl-alexandria
|
||||
cl-slime-swank
|
||||
|
|
Loading…
Reference in a new issue