mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 14:16:55 -05:00
gnu: Add emacs-nerd-icons.
* gnu/packages/emacs-xyz.scm (emacs-nerd-icons): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Change-Id: Ie7e52ca3fb40986185061fb283b13e2828e963a8
This commit is contained in:
parent
81b293ef34
commit
2861c70b9e
1 changed files with 21 additions and 0 deletions
|
@ -28172,6 +28172,27 @@ (define-public emacs-editorconfig
|
|||
files are easily readable and they work nicely with version control systems.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public emacs-nerd-icons
|
||||
(package
|
||||
(name "emacs-nerd-icons")
|
||||
(version "0.1.0")
|
||||
(home-page "https://github.com/rainstormstudio/nerd-icons.el")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference (url home-page) (commit version)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"0ggj6lm02m7nb5gxnqs2v2lkxsclml6kq176vam9qyg1fsm7yvdw"))))
|
||||
(build-system emacs-build-system)
|
||||
(arguments
|
||||
(list #:include #~(cons "^data\\/" %default-include)))
|
||||
(synopsis "Library for easily using nerd font icons inside Emacs")
|
||||
(description "Nerd-icons an alternative to all-the-icons. It works on both
|
||||
GUI and terminal, and requires a nerd font installed on your system.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public emacs-all-the-icons
|
||||
(package
|
||||
(name "emacs-all-the-icons")
|
||||
|
|
Loading…
Reference in a new issue