From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mathieu Lirzin Subject: [PATCH 6/7] gnu: Add lxtask. Date: Thu, 16 Jul 2015 12:19:19 +0200 Message-ID: <1437041960-5189-7-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]:37563) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZFgJ4-0000Bg-AD for guix-devel@gnu.org; Thu, 16 Jul 2015 06:22:26 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZFgJ0-00082a-8C for guix-devel@gnu.org; Thu, 16 Jul 2015 06:22:22 -0400 Received: from smtp2.openmailbox.org ([62.4.1.36]:59097) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZFgJ0-00082O-1i for guix-devel@gnu.org; Thu, 16 Jul 2015 06:22:18 -0400 Received: from localhost (localhost [127.0.0.1]) by mail2.openmailbox.org (Postfix) with ESMTP id AA01D202294 for ; Thu, 16 Jul 2015 12:22:17 +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 (lxtask): New variable. --- gnu/packages/lxde.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) --------------2.1.4 Content-Type: text/x-patch; name="0006-gnu-Add-lxtask.patch" Content-Disposition: inline; filename="0006-gnu-Add-lxtask.patch" Content-Transfer-Encoding: quoted-printable diff --git a/gnu/packages/lxde.scm b/gnu/packages/lxde.scm index a8fb10a..a28eb3f 100644 --- a/gnu/packages/lxde.scm +++ b/gnu/packages/lxde.scm @@ -89,6 +89,30 @@ able to change themes, icons, and fonts used by GTK+ a= pplications.") (home-page "http://lxde.org") (license license:gpl2+))) =20 +(define-public lxtask + (package + (name "lxtask") + (version "0.1.6") + (source (origin + (method url-fetch) + (uri (string-append "mirror://sourceforge/project/lxde/LXT= ask" + "%20%28task%20manager%29/LXTask%20" + (version-major+minor version) ".x/" + name "-" version ".tar.xz")) + (sha256 + (base32 + "0ia3i430lpwgl2kch6sl1za8qf96wc4fkcv91yhdzgnzafcnm3gp"))= )) + (build-system gnu-build-system) + (inputs `(("gtk+" ,gtk+-2))) + (native-inputs `(("intltool" ,intltool) + ("pkg-config" ,pkg-config))) + (synopsis "LXDE task manager") + (description "LXTask is a lightweight task manager derived from Xfce= task +manager with all dependencies on Xfce removed. LXTask is based on GTK+ +toolkit. It allows monitoring and controlling of running processes.") + (home-page "http://lxde.org") + (license license:gpl2+))) + (define-public lxterminal (package (name "lxterminal") --------------2.1.4--