diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2018-09-26 23:25:24 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2018-10-03 18:54:26 +0200 |
commit | d406dcc046b140de616d3ea83a7591865c7eb5be (patch) | |
tree | 438c0651dc1cdb218474dcd9e860c7837dcb4aa3 | |
parent | 6f2a2bd66d5f7e5e8d7d2fd6f6cfdf3e5006b567 (diff) | |
download | patches-d406dcc046b140de616d3ea83a7591865c7eb5be.tar patches-d406dcc046b140de616d3ea83a7591865c7eb5be.tar.gz |
gnu: Add emacs-powerline.
* gnu/packages/emacs.scm (emacs-powerline): New variable.
-rw-r--r-- | gnu/packages/emacs.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index b25358718c..b9f3d678e0 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -12301,3 +12301,25 @@ as better scaling of and anti aliasing of the icons.") (license (list license:expat license:gpl3+ license:silofl1.1 license:asl2.0)))) +(define-public emacs-powerline + (package + (name "emacs-powerline") + (version "2.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/milkypostman/powerline.git") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1hp3xp18943n0rlggz55150020ivw8gvi1vyxkr4z8xhpwq4gaar")))) + (build-system emacs-build-system) + (home-page "https://github.com/milkypostman/powerline/") + (synopsis "Mode-line plugin for Emacs") + (description "Powerline is a utility plugin which allows you to create +a better-looking, more functional Emacs mode-line. A collection of predefined +themes comes with the package.") + (license license:gpl3+))) + |