me
/
guix
Archived
1
0
Fork 0

gnu: Add emacs-spaceline-all-the-icons.

* gnu/packages/emacs-xyz.scm (emacs-spaceline-all-the-icons): New variable.

Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
master
pinoaffe 2022-01-29 15:48:03 +01:00 committed by Nicolas Goaziou
parent c47dc7ffd7
commit 1a586346b1
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 28 additions and 0 deletions

View File

@ -660,6 +660,34 @@ expression navigating and manipulating. It supports many major modes
out of the box.")
(license license:gpl3+))))
(define-public emacs-spaceline-all-the-icons
(package
(name "emacs-spaceline-all-the-icons")
(version "1.4.0")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/domtronn/spaceline-all-the-icons.el")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32
"186v71d8n1iy73drayyf57pyzlz973q74mazkyvb8w3fj8bb3llm"))))
(build-system emacs-build-system)
(propagated-inputs
(list emacs-all-the-icons
emacs-memoize
emacs-spaceline))
(home-page "https://github.com/domtronn/spaceline-all-the-icons.el")
(synopsis
"Theme for @code{emacs-spaceline} using @code{emacs-all-the-icons}")
(description
"This package is a theme for @code{emacs-spaceline} that recreates most
of the segments available in that package using icons from
@code{emacs-all-the-icons}. Icon fonts allow for more tailored and detailed
information in the mode line.")
(license license:expat)))
(define-public emacs-project
(package
(name "emacs-project")