mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: vim-neosnippet: Use copy-build-system.
* gnu/packages/vim.scm (vim-neosnippet)[build-system]: Switch to copy-build-system. [arguments]: Adjust accordingly.
This commit is contained in:
parent
90d64d9ca9
commit
f19e539c3e
1 changed files with 10 additions and 27 deletions
|
@ -350,34 +350,17 @@ (define-public vim-neosnippet
|
|||
(sha256
|
||||
(base32
|
||||
"0k80syscmpnj38ks1fq02ds59g0r4jlg9ll7z4qc048mgi35alw5"))))
|
||||
(build-system gnu-build-system)
|
||||
(build-system copy-build-system)
|
||||
(arguments
|
||||
`(#:tests? #f
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(delete 'configure)
|
||||
(delete 'build)
|
||||
(replace 'install
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(let* ((out (assoc-ref outputs "out"))
|
||||
(vimfiles (string-append out "/share/vim/vimfiles"))
|
||||
(autoload (string-append vimfiles "/autoload"))
|
||||
(doc (string-append vimfiles "/doc"))
|
||||
(ftdetect (string-append vimfiles "/ftdetect"))
|
||||
(ftplugin (string-append vimfiles "/ftplugin"))
|
||||
(indent (string-append vimfiles "/indent"))
|
||||
(plugin (string-append vimfiles "/plugin"))
|
||||
(rplugin (string-append vimfiles "/rplugin"))
|
||||
(syntax (string-append vimfiles "/syntax")))
|
||||
(copy-recursively "autoload" autoload)
|
||||
(copy-recursively "doc" doc)
|
||||
(copy-recursively "ftdetect" ftdetect)
|
||||
(copy-recursively "ftplugin" ftplugin)
|
||||
(copy-recursively "indent" indent)
|
||||
(copy-recursively "plugin" plugin)
|
||||
(copy-recursively "rplugin" rplugin)
|
||||
(copy-recursively "syntax" syntax)
|
||||
#t))))))
|
||||
'(#:install-plan
|
||||
'(("autoload" "share/vim/vimfiles/")
|
||||
("doc" "share/vim/vimfiles/")
|
||||
("ftdetect" "share/vim/vimfiles/")
|
||||
("ftplugin" "share/vim/vimfiles/")
|
||||
("indent" "share/vim/vimfiles/")
|
||||
("plugin" "share/vim/vimfiles/")
|
||||
("rplugin" "share/vim/vimfiles/")
|
||||
("syntax" "share/vim/vimfiles/"))))
|
||||
(synopsis "Snippet support for Vim")
|
||||
(description
|
||||
"@code{neosnippet}, is a plugin for Vim which adds snippet support to Vim.
|
||||
|
|
Loading…
Reference in a new issue