guix-commits
[Top][All Lists]
Advanced

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

02/02: gnu: Add emacs-danneskjold-theme.


From: ???
Subject: 02/02: gnu: Add emacs-danneskjold-theme.
Date: Sat, 19 Nov 2016 13:32:14 +0000 (UTC)

iyzsong pushed a commit to branch master
in repository guix.

commit 8f4939506405bdde5a0db57a06e78251bb35a047
Author: ng0 <address@hidden>
Date:   Fri Nov 18 18:59:30 2016 +0000

    gnu: Add emacs-danneskjold-theme.
    
    * gnu/packages/emacs.scm (emacs-danneskjold-theme): New variable.
    
    Signed-off-by: 宋文武 <address@hidden>
---
 gnu/packages/emacs.scm |   29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index 76809d3..ec672bc 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -3259,6 +3259,35 @@ Flx has support for ido (interactively do things) 
through flx-ido.")
 known loosely as deftheme.  Many mode-specific customizations are included.")
     (license license:gpl3+)))
 
+(define-public emacs-danneskjold-theme
+  (let* ((commit "8733d2fe8743e8a01826ea6d4430ef376c727e57")
+         (revision "1"))
+    (package
+      (name "emacs-danneskjold-theme")
+      (version (string-append "0.0.0-" revision "." (string-take commit 7)))
+      (home-page "https://github.com/rails-to-cosmos/danneskjold-theme";)
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url home-page)
+               (commit commit)))
+         (file-name (string-append name "-" version "-checkout"))
+         (sha256
+          (base32
+           "0s6rbsb0y8i8m5b9xm4gw1p1cxsxdqnqxqqb638pygz9f76mbir1"))))
+      (build-system emacs-build-system)
+      (arguments
+       `(#:phases
+         (modify-phases %standard-phases
+           (add-after 'unpack 'delete-screenshots
+             (lambda _
+               (delete-file-recursively "screenshots") #t)))))
+      (synopsis "High-contrast Emacs theme")
+      (description
+       "@code{danneskjold-theme} is a high-contrast theme for Emacs.")
+      (license license:gpl3+))))
+
 (define-public emacs-auto-complete
   (package
     (name "emacs-auto-complete")



reply via email to

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