mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: emacs-company: Include company icons and documentation images.
* gnu/packages/emacs-xyz.scm (emacs-company): Include icons and documentation images. Change-Id: I8b7515141fa71fcb4b199bfaa268ddd4ab117743 Signed-off-by: Andrew Tropin <andrew@trop.in>
This commit is contained in:
parent
a35372cc0b
commit
55c94d68df
1 changed files with 14 additions and 0 deletions
|
@ -9261,6 +9261,20 @@ (define-public emacs-company
|
|||
(sha256
|
||||
(base32 "0j2qrnx2w2al4f2n37b89q0pkabh5ccv00gsknvgaylhy0za5gq9"))))
|
||||
(build-system emacs-build-system)
|
||||
(arguments
|
||||
(list
|
||||
#:include #~(cons* "icons/" %default-include)
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(add-after 'move-doc 'install-doc-images
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(let ((images (find-files "./images/small/" ".*\\.png$")))
|
||||
(for-each
|
||||
(lambda (image)
|
||||
(install-file
|
||||
image
|
||||
(string-append #$output "/share/info/images/small")))
|
||||
images)))))))
|
||||
(home-page "https://company-mode.github.io/")
|
||||
(synopsis "Modular text completion framework")
|
||||
(description
|
||||
|
|
Loading…
Reference in a new issue