From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ricardo Wurmus Subject: [PATCH 06/17] gnu: Add emacs-paren-face. Date: Tue, 12 Jul 2016 23:05:03 +0200 Message-ID: <20160712210514.21310-7-rekado@elephly.net> References: <20160712210514.21310-1-rekado@elephly.net> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:55450) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bN4sN-00087u-Ji for guix-devel@gnu.org; Tue, 12 Jul 2016 17:05:56 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bN4sL-0001hi-IP for guix-devel@gnu.org; Tue, 12 Jul 2016 17:05:54 -0400 Received: from sender163-mail.zoho.com ([74.201.84.163]:24356) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bN4sL-0001ha-A4 for guix-devel@gnu.org; Tue, 12 Jul 2016 17:05:53 -0400 In-Reply-To: <20160712210514.21310-1-rekado@elephly.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 * gnu/packages/emacs.scm (emacs-paren-face): New variable. --- gnu/packages/emacs.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 7f6fe2d..57c7c36 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -1395,6 +1395,31 @@ column by drawing a thin line down the length of the editing window.") IRC bouncer with ERC.") (license license:expat))) +(define-public emacs-paren-face + (package + (name "emacs-paren-face") + (version "1.0.0") + (source + (origin + (method url-fetch) + (uri (string-append "https://github.com/tarsius/paren-face/archive/" + version ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "0y4qrhxa9332vsvr999jg7qj1ymnfgwpf591yi4a4jgg90pm7qnn")))) + (build-system emacs-build-system) + (home-page "http://github.com/tarsius/paren-face") + (synopsis "Face for parentheses in lisp modes") + (description + "This library defines a face named @code{parenthesis} used just for +parentheses. The intended purpose of this face is to make parentheses less +visible in Lisp code by dimming them. Lispers probably don't need to be +constantly made aware of the existence of the parentheses. Dimming them might +be even more useful for people new to lisp who have not yet learned to +subconsciously blend out the parentheses.") + (license license:gpl3+))) + (define-public emacs-ob-ipython (package (name "emacs-ob-ipython") -- 2.8.4