mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: emacs-all-the-icons: Improve style.
* gnu/packages/emacs-xyz.scm (emacs-all-the-icons): [arguments]: Improve style, use gexps. Signed-off-by: Ian Eure <ian@retrospec.tv>
This commit is contained in:
parent
bf6c7e0a57
commit
07e8c8f636
1 changed files with 23 additions and 23 deletions
|
@ -32659,15 +32659,15 @@ GUI and terminal, and requires a nerd font installed on your system.")
|
||||||
(base32 "0lwgvgnqf7vihglm0c5bwsxbl4x7f641289cji5s7jwy2dbsqk7g"))))
|
(base32 "0lwgvgnqf7vihglm0c5bwsxbl4x7f641289cji5s7jwy2dbsqk7g"))))
|
||||||
(build-system emacs-build-system)
|
(build-system emacs-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:include '("\\.el$" "^data/")
|
(list
|
||||||
#:exclude '("^test/")
|
#:include '(list "\\.el$" "^data/")
|
||||||
|
#:exclude '(list "^test/")
|
||||||
#:tests? #f ; XXX: duplicate tests
|
#:tests? #f ; XXX: duplicate tests
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
#~(modify-phases %standard-phases
|
||||||
(add-after 'install 'install-fonts
|
(add-after 'install 'install-fonts
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda _
|
||||||
(let ((fonts (string-append (assoc-ref outputs "out")
|
(let ((fonts (string-append #$output "/share/fonts")))
|
||||||
"/share/fonts")))
|
|
||||||
(mkdir-p fonts)
|
(mkdir-p fonts)
|
||||||
(with-directory-excursion "fonts"
|
(with-directory-excursion "fonts"
|
||||||
(install-file "all-the-icons.ttf" fonts)
|
(install-file "all-the-icons.ttf" fonts)
|
||||||
|
@ -32676,7 +32676,7 @@ GUI and terminal, and requires a nerd font installed on your system.")
|
||||||
(install-file "octicons.ttf" fonts)
|
(install-file "octicons.ttf" fonts)
|
||||||
(install-file "weathericons.ttf" fonts)))))
|
(install-file "weathericons.ttf" fonts)))))
|
||||||
(replace 'check
|
(replace 'check
|
||||||
(lambda* (#:key tests? outputs #:allow-other-keys)
|
(lambda* (#:key tests? #:allow-other-keys)
|
||||||
(if tests?
|
(if tests?
|
||||||
(apply invoke "ert-runner" "-l"
|
(apply invoke "ert-runner" "-l"
|
||||||
(append (find-files "data" "\\.el")
|
(append (find-files "data" "\\.el")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue