gnu: vim-neosnippet-snippets: Use copy-build-system.
* gnu/packages/vim.scm (vim-neosnippet-snippets)[build-system]: Switch to copy-build-system. [arguments]: Adjust accordingly.master
parent
72194753d9
commit
90d64d9ca9
|
@ -321,20 +321,10 @@ features than Vim's built-in completion.")
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"151wpvbj6jb9jdkbhj3b77f5sq7y328spvwfbqyj1y32rg4ifmc6"))))
|
"151wpvbj6jb9jdkbhj3b77f5sq7y328spvwfbqyj1y32rg4ifmc6"))))
|
||||||
(build-system gnu-build-system)
|
(build-system copy-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f
|
'(#:install-plan
|
||||||
#:phases
|
'(("neosnippets" "share/vim/vimfiles/"))))
|
||||||
(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")))
|
|
||||||
(copy-recursively "neosnippets"
|
|
||||||
(string-append vimfiles "/neosnippets"))
|
|
||||||
#t))))))
|
|
||||||
(synopsis "Snippets for neosnippet")
|
(synopsis "Snippets for neosnippet")
|
||||||
(description
|
(description
|
||||||
"@code{neosnippet-snippets} provides standard snippets for the Vim plugin
|
"@code{neosnippet-snippets} provides standard snippets for the Vim plugin
|
||||||
|
|
Reference in New Issue