From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alex Vong Subject: Re: [PATCH] gnu: Add emacs-ahungry-theme. Date: Fri, 26 Aug 2016 17:49:20 +0800 Message-ID: <87eg5b2733.fsf@gmail.com> References: <87bn0hv0yc.fsf@gmail.com> <87bn0gez7w.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:59357) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bdDlX-0000TI-Uv for guix-devel@gnu.org; Fri, 26 Aug 2016 05:49:37 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bdDlS-0004Mi-Dn for guix-devel@gnu.org; Fri, 26 Aug 2016 05:49:34 -0400 Received: from mail-pa0-x241.google.com ([2607:f8b0:400e:c03::241]:34724) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bdDlS-0004Mb-5t for guix-devel@gnu.org; Fri, 26 Aug 2016 05:49:30 -0400 Received: by mail-pa0-x241.google.com with SMTP id hh10so4475578pac.1 for ; Fri, 26 Aug 2016 02:49:29 -0700 (PDT) In-Reply-To: <87bn0gez7w.fsf@gmail.com> (Alex Kost's message of "Fri, 26 Aug 2016 11:00:51 +0300") 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: Alex Kost Cc: guix-devel@gnu.org Alex Kost writes: > Alex Vong (2016-08-25 09:04 +0300) wrote: > >> Hi, >> >> This patch adds ahungry theme from elpa, which I am currently using. I >> test the patch by `./pre-inst-env guix install emacs-ahungry-theme' and >> launching emacs. It works fine on my machine. > > I placed it right after zenburn and solarized themes, and applied as > e7761186c3, thanks! > >> +(define-public emacs-ahungry-theme >> + (package >> + (name "emacs-ahungry-theme") >> + (version "1.3.0") >> + (source >> + (origin (method url-fetch) >> + (uri (string-append "http://elpa.gnu.org/packages/ahungry-theme-" >> + version ".tar")) >> + (sha256 >> + (base32 "1p2zaq0s4bbl5cx6wyab24wamw7m0mysb0v47dqjmnvfc25z84rq")))) >> + (build-system emacs-build-system) >> + (home-page "https://github.com/ahungry/color-theme-ahungry") >> + (synopsis >> + "Ahungry color theme for Emacs. Make sure to (load-theme 'ahungry).") > > The second sentence is not needed (especially in synopsis), I removed it. > >> + (description "Bright and bold color theme for GNU Emacs. >> + >> +If you load it from a terminal, you will be able to make use of the >> transparent >> +background. If you load it from a GUI, it will default to a dark >> background.") > > I rephrased the description a bit. Thank you!