From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mathieu Lirzin Subject: [PATCH 5/7] gnu: Add lxterminal. Date: Thu, 16 Jul 2015 12:19:18 +0200 Message-ID: <1437041960-5189-6-git-send-email-mthl@openmailbox.org> References: <1437041960-5189-1-git-send-email-mthl@openmailbox.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="------------2.1.4" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:37533) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZFgJ2-000096-W1 for guix-devel@gnu.org; Thu, 16 Jul 2015 06:22:22 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZFgIx-0007zw-EH for guix-devel@gnu.org; Thu, 16 Jul 2015 06:22:20 -0400 Received: from smtp13.openmailbox.org ([62.4.1.47]:35082) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZFgIx-0007z0-7V for guix-devel@gnu.org; Thu, 16 Jul 2015 06:22:15 -0400 Received: from localhost (localhost [127.0.0.1]) by mail2.openmailbox.org (Postfix) with ESMTP id 85B3620247B for ; Thu, 16 Jul 2015 12:22:14 +0200 (CEST) In-Reply-To: <1437041960-5189-1-git-send-email-mthl@openmailbox.org> 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: guix-devel@gnu.org This is a multi-part message in MIME format. --------------2.1.4 Content-Type: text/plain; charset=UTF-8; format=fixed Content-Transfer-Encoding: quoted-printable * gnu/packages/lxde.scm (lxterminal): New variable. --- gnu/packages/lxde.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) --------------2.1.4 Content-Type: text/x-patch; name="0005-gnu-Add-lxterminal.patch" Content-Disposition: inline; filename="0005-gnu-Add-lxterminal.patch" Content-Transfer-Encoding: quoted-printable diff --git a/gnu/packages/lxde.scm b/gnu/packages/lxde.scm index 47d6627..a8fb10a 100644 --- a/gnu/packages/lxde.scm +++ b/gnu/packages/lxde.scm @@ -89,6 +89,31 @@ able to change themes, icons, and fonts used by GTK+ a= pplications.") (home-page "http://lxde.org") (license license:gpl2+))) =20 +(define-public lxterminal + (package + (name "lxterminal") + (version "0.2.0") + (source (origin + (method url-fetch) + (uri (string-append "mirror://sourceforge/project/lxde/LXT= erminal" + "%20%28terminal%20emulator%29/LXTermin= al%20" + version "/" name "-" version ".tar.gz"= )) + (sha256 + (base32 + "1brb506vmnncih8nyvlrckrrn6msbsvz2vwbm7bsqwigcnchwjqp"))= )) + (build-system gnu-build-system) + (inputs `(("gtk+" ,gtk+-2) + ("vte" ,vte/gtk+-2))) + (native-inputs `(("intltool" ,intltool) + ("pkg-config" ,pkg-config))) + (synopsis "LXDE terminal emulator") + (description "LXTerminal is a VTE-based terminal emulator. It suppo= rts +multiple tabs and has only minimal dependencies thus being completely +desktop-independent. In order to reduce memory usage and increase the +performance, all instances of the terminal are sharing a single process.= ") + (home-page "http://lxde.org") + (license license:gpl2+))) + (define-public menu-cache (package (name "menu-cache") --------------2.1.4--