guix-commits
[Top][All Lists]
Advanced

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

01/01: gnu: Add emacs-zenburn-theme.


From: Alex Kost
Subject: 01/01: gnu: Add emacs-zenburn-theme.
Date: Tue, 17 May 2016 18:07:15 +0000 (UTC)

alezost pushed a commit to branch master
in repository guix.

commit 9576cc72dc4f2973551c72951e64e5bf6240ff6b
Author: humanitiesNerd <address@hidden>
Date:   Tue May 17 10:54:13 2016 +0200

    gnu: Add emacs-zenburn-theme.
    
    * gnu/packages/emacs.scm (emacs-zenburn-theme): New variable.
    
    Signed-off-by: Alex Kost <address@hidden>
---
 gnu/packages/emacs.scm |   24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index 8ba645e..32ed722 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -8,6 +8,7 @@
 ;;; Copyright © 2016 Nils Gillmann <address@hidden>
 ;;; Copyright © 2016 Chris Marusich <address@hidden>
 ;;; Copyright © 2015, 2016 Christopher Allan Webber <address@hidden>
+;;; Copyright © 2016 humanitiesNerd <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -1588,3 +1589,26 @@ to recognize a name like \"RFC 1234\".  This package 
enhances ffap so
 that it correctly finds RFCs even when a space appears before the
 number.")
     (license license:gpl3+)))
+
+(define-public emacs-zenburn-theme
+  (package
+    (name "emacs-zenburn-theme")
+    (version "2.4")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "https://github.com/bbatsov/zenburn-emacs/archive/v";
+                    version ".tar.gz"))
+              (file-name (string-append name "-" version ".tar.gz"))
+              (sha256
+               (base32
+                "0lyi84bm8sa7vj40n6zg6rlbsmi53mi1y9xn6gkjj29s5zbcnlg7"))))
+    (build-system emacs-build-system)
+    (home-page "http://github.com/bbatsov/zenburn-emacs";)
+    (synopsis "Low contrast color theme for Emacs")
+    (description
+     "Zenburn theme is a port of the popular Vim Zenburn theme for Emacs.
+It is built on top of the custom theme support in Emacs 24 or later.")
+    (license license:gpl3+)))
+
+



reply via email to

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