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:
Cayetano Santos 2023-10-17 11:53:01 +02:00 committed by Ludovic Courtès
parent 81b293ef34
commit 2861c70b9e
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -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")