guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#32858] [PATCH 2/3] gnu: Add emacs-powerline.


From: Nicolas Goaziou
Subject: [bug#32858] [PATCH 2/3] gnu: Add emacs-powerline.
Date: Thu, 27 Sep 2018 21:47:36 +0200

* gnu/packages/emacs.scm (emacs-powerline): New variable.
---
 gnu/packages/emacs.scm | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index fe229b650..a7d8f186b 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -12297,3 +12297,24 @@ fonts and propertize them within Emacs.")
     ;; "fontawesome.ttf", "ocitcons.ttf" and "weathericons.ttf".
     (license (list license:expat 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.")
+    (license license:gpl3+)))
+
-- 
2.18.0






reply via email to

[Prev in Thread] Current Thread [Next in Thread]