[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
07/07: gnu: Add emacs-spacegray-theme.
From: |
guix-commits |
Subject: |
07/07: gnu: Add emacs-spacegray-theme. |
Date: |
Wed, 13 Nov 2019 17:27:24 -0500 (EST) |
civodul pushed a commit to branch master
in repository guix.
commit 35338b50011cdaf15f0b211c478bb321cc714b6e
Author: David Wilson <address@hidden>
Date: Mon Nov 11 06:54:59 2019 -0800
gnu: Add emacs-spacegray-theme.
* gnu/packages/emacs-xyz.scm (emacs-spacegray-theme) New variable.
Signed-off-by: Ludovic Courtès <address@hidden>
---
gnu/packages/emacs-xyz.scm | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index f74dbee..187b387 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -56,6 +56,7 @@
;;; Copyright © 2019 Björn Höfling <address@hidden>
;;; Copyright © 2019 Stephen Webber <address@hidden>
;;; Copyright © 2019 Leo Prikler <address@hidden>
+;;; Copyright © 2019 David Wilson <address@hidden>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -4878,6 +4879,30 @@ is to keep colors easily distinguishable, contrast
enough and still pleasant
for the eyes.")
(license license:expat))) ; MIT license
+(define-public emacs-spacegray-theme
+ (let ((commit "9826265c2bceb2ebc1c5e16a45021da0253ace97")
+ (revision "0"))
+ (package
+ (name "emacs-spacegray-theme")
+ (version (git-version "0" revision commit))
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url
"https://github.com/bruce/emacs-spacegray-theme.git")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0aplwmm17ypbns5blc4rf5rr6dasj0zp5ibykpfl43fh4bd8z89n"))))
+ (build-system emacs-build-system)
+ (home-page "https://github.com/bruce/emacs-spacegray-theme")
+ (synopsis "Port of Sublime Text's Spacegray theme for Emacs")
+ (description
+ "@code{spacegray-theme} is an Emacs port of the Spacegray theme from
+Sublime Text. It features a dark blue/gray background and soft blue, green,
+orange and red as accent colors.")
+ (license license:expat)))) ; MIT license
+
(define-public emacs-2048-game
(package
(name "emacs-2048-game")
- branch master updated (f041db8 -> 35338b5), guix-commits, 2019/11/13
- 01/07: tests: "make check-system" uses Guix built with (guix self)., guix-commits, 2019/11/13
- 03/07: services: dbus: Add description., guix-commits, 2019/11/13
- 04/07: services: dbus: Log to syslog., guix-commits, 2019/11/13
- 05/07: services: dbus: Simplify 'dbus-uuidgen' invocation., guix-commits, 2019/11/13
- 06/07: doc: Drop stray quotation mark., guix-commits, 2019/11/13
- 07/07: gnu: Add emacs-spacegray-theme.,
guix-commits <=
- 02/07: daemon: Don't include <linux/fs.h>., guix-commits, 2019/11/13