From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?utf-8?B?5a6L5paH5q2m?= Subject: Re: [PATCH 5/5] gnu: Add terminology. Date: Thu, 26 Feb 2015 20:30:23 +0800 Message-ID: <877fv4hn34.fsf@gmail.com> References: <1424910673-17665-1-git-send-email-sleep_walker@suse.cz> <1424910673-17665-5-git-send-email-sleep_walker@suse.cz> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:44737) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YQxa7-0005ny-Qx for guix-devel@gnu.org; Thu, 26 Feb 2015 07:30:20 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YQxa5-0001hZ-3G for guix-devel@gnu.org; Thu, 26 Feb 2015 07:30:19 -0500 Received: from mail-pd0-x22a.google.com ([2607:f8b0:400e:c02::22a]:39876) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YQxa4-0001hO-TY for guix-devel@gnu.org; Thu, 26 Feb 2015 07:30:17 -0500 Received: by pdjy10 with SMTP id y10so12713991pdj.6 for ; Thu, 26 Feb 2015 04:30:15 -0800 (PST) In-Reply-To: <1424910673-17665-5-git-send-email-sleep_walker@suse.cz> 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-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: =?utf-8?B?VG9tw6HFoSDEjGVjaA==?= , guix-devel@gnu.org Tom=C3=A1=C5=A1 =C4=8Cech writes: > * gnu/packages/efl.scm (terminology): New variable. I'll call this file 'enlightenment.scm', since you plan to add applications and wm of E19 to this file right? > --- > gnu/packages/efl.scm | 21 +++++++++++++++++++++ > 1 file changed, 21 insertions(+) > > diff --git a/gnu/packages/efl.scm b/gnu/packages/efl.scm > index d69cb5c..61bc22b 100644 > --- a/gnu/packages/efl.scm > +++ b/gnu/packages/efl.scm > @@ -183,3 +183,24 @@ > (description > "Set of generic media players allowing to open video files through = emotion. Useful only for emotion library based applications.") > (license license:bsd-2))) > + > +(define-public terminology > + (package > + (name "terminology") > + (version "0.8.0") > + (source (origin > + (method url-fetch) > + (uri (string-append "http://download.enlightenment.org/rel= /apps/terminology/terminology-" version ".tar.gz")) > + (sha256 > + (base32 "0a767ixackzmhb2awrhjy7q6vsivsd54wc434i617xiw095x= 843s")))) > + (build-system gnu-build-system) > + (native-inputs > + `(("pkg-config" ,pkg-config))) > + (inputs > + `(("efl" ,efl) > + ("elementary" ,elementary))) > + (home-page "http://www.enlightenment.org") > + (synopsis "Powerful terminal emulator based on EFL") > + (description > + "Fast but advanced terminal emulator running in X or framebuffer") > + (license license:bsd-2))) > --=20 > 2.0.5 And please wrap long line to 80 characters, I think './pre-inst-env guix lint efl' should complain this ;-) Great work! I'm very excite to use terminology on GuixSD.