From mboxrd@z Thu Jan 1 00:00:00 1970 From: contact.ng0@cryptolab.net Subject: [PATCH] gnu: Add emacs-dream-theme. Date: Fri, 3 Feb 2017 20:34:16 +0000 Message-ID: <20170203203416.15793-2-contact.ng0@cryptolab.net> References: <20170203203416.15793-1-contact.ng0@cryptolab.net> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:51501) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cZkXf-0002TI-O7 for guix-devel@gnu.org; Fri, 03 Feb 2017 15:33:12 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cZkXc-0007IU-LX for guix-devel@gnu.org; Fri, 03 Feb 2017 15:33:11 -0500 Received: from aibo.runbox.com ([91.220.196.211]:45556) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cZkXc-0007GL-Cg for guix-devel@gnu.org; Fri, 03 Feb 2017 15:33:08 -0500 In-Reply-To: <20170203203416.15793-1-contact.ng0@cryptolab.net> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org From: ng0 * gnu/packages/emacs.scm (emacs-dream-theme): New variable. --- gnu/packages/emacs.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index dfdf32496..04ac96e33 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -3490,6 +3490,30 @@ known loosely as deftheme. Many mode-specific customizations are included.") "@code{danneskjold-theme} is a high-contrast theme for Emacs.") (license license:gpl3+)))) +(define-public emacs-dream-theme + (let* ((commit "107a11d74365046f28a1802a2bdb5e69e4a7488b") + (revision "1")) + (package + (name "emacs-dream-theme") + (version (string-append "0.0.0-" revision "." (string-take commit 7))) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/djcb/dream-theme") + (commit commit))) + (file-name (string-append name "-" version "-checkout")) + (sha256 + (base32 + "0za18nfkq4xqm35k6006vsixcbmvmxqgma4iw5sw37h8vmcsdylk")))) + (build-system emacs-build-system) + (home-page "https://github.com/djcb/dream-theme") + (synopsis "High-contrast Emacs theme") + (description + "@code{dream-theme} is a dark, clean theme for Emacs. It is inspired +by zenburn, sinburn and similar themes, but slowly diverging from them.") + (license license:gpl3+)))) + (define-public emacs-auto-complete (package (name "emacs-auto-complete") -- 2.11.0