From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?UTF-8?q?=E5=AE=8B=E6=96=87=E6=AD=A6?= Subject: [PATCH 2/2] gnu: Add xfce4-terminal. Date: Sun, 14 Dec 2014 13:34:25 +0800 Message-ID: <1418535265-17233-2-git-send-email-iyzsong@gmail.com> References: <1418535265-17233-1-git-send-email-iyzsong@gmail.com> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:41067) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Y01pT-0008ET-AF for guix-devel@gnu.org; Sun, 14 Dec 2014 00:34:59 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Y01pN-0001cs-A3 for guix-devel@gnu.org; Sun, 14 Dec 2014 00:34:51 -0500 Received: from mail-pd0-x22a.google.com ([2607:f8b0:400e:c02::22a]:39437) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Y01pN-0001bX-3D for guix-devel@gnu.org; Sun, 14 Dec 2014 00:34:45 -0500 Received: by mail-pd0-f170.google.com with SMTP id v10so9663660pde.29 for ; Sat, 13 Dec 2014 21:34:44 -0800 (PST) In-Reply-To: <1418535265-17233-1-git-send-email-iyzsong@gmail.com> 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 * gnu/packages/xfce.scm (xfce4-terminal): New variable. --- gnu/packages/xfce.scm | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm index 69776fc..4529a43 100644 --- a/gnu/packages/xfce.scm +++ b/gnu/packages/xfce.scm @@ -476,3 +476,33 @@ on the screen.") optional application menu or icons for minimized applications or launchers, devices and folders.") (license gpl2+))) + +(define-public xfce4-terminal + (package + (name "xfce4-terminal") + (version "0.6.3") + (source (origin + (method url-fetch) + (uri (string-append "http://archive.xfce.org/src/apps/" name "/" + (version-major+minor version) "/" + name "-" version ".tar.bz2")) + (sha256 + (base32 + "023y0lkfijifh05yz8grimxadqpi98mrivr00sl18nirq8b4fbwi")))) + (build-system gnu-build-system) + (native-inputs + `(("pkg-config" ,pkg-config) + ("intltool" ,intltool))) + (inputs + `(("libxfce4ui" ,libxfce4ui) + ("vte" ,vte-0))) + (home-page "http://www.xfce.org/") + (synopsis "Xfce terminal emulator") + (description + "A lightweight and easy to use terminal emulator for Xfce. Features +include a simple configuration interface, the ability to use multiple tabs +with terminals within a single window, the possibility to have a +pseudo-transparent terminal background, and a compact mode (where both the +menubar and the window decorations are hidden) that helps you to save space +on your desktop.") + (license gpl2+))) -- 2.1.2