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 09/15] gnu: Add xfce4-appfinder. Date: Wed, 10 Dec 2014 20:02:30 +0800 Message-ID: <1418212956-1698-9-git-send-email-iyzsong@gmail.com> References: <1418212956-1698-1-git-send-email-iyzsong@gmail.com> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:40613) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Xyg0L-0004v3-TX for guix-devel@gnu.org; Wed, 10 Dec 2014 07:04:35 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Xyg0F-0002P5-TQ for guix-devel@gnu.org; Wed, 10 Dec 2014 07:04:29 -0500 Received: from mail-pa0-x236.google.com ([2607:f8b0:400e:c03::236]:52167) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Xyg0F-0002Oz-MO for guix-devel@gnu.org; Wed, 10 Dec 2014 07:04:23 -0500 Received: by mail-pa0-f54.google.com with SMTP id fb1so2679236pad.41 for ; Wed, 10 Dec 2014 04:04:23 -0800 (PST) In-Reply-To: <1418212956-1698-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-appfinder): New variable. --- gnu/packages/xfce.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm index 2f63562..f5f3fc9 100644 --- a/gnu/packages/xfce.scm +++ b/gnu/packages/xfce.scm @@ -255,3 +255,28 @@ management D-Bus specification.") applications menu, workspace switcher and more.") ;; Libraries are under LGPLv2.1+, and programs under GPLv2+. (license (list gpl2+ lgpl2.1+)))) + +(define-public xfce4-appfinder + (package + (name "xfce4-appfinder") + (version "4.10.0") + (source (origin + (method url-fetch) + (uri (string-append "http://archive.xfce.org/xfce/4.10/src/" + name "-" version ".tar.bz2")) + (sha256 + (base32 + "0falckrziw8m1a72nxd7fqq84r3xfbrb6lv35flsca346rzawah4")))) + (build-system gnu-build-system) + (native-inputs + `(("pkg-config" ,pkg-config) + ("intltool" ,intltool))) + (inputs + `(("garcon" ,garcon) + ("libxfce4ui" ,libxfce4ui))) + (home-page "http://www.xfce.org/") + (synopsis "XFCE Application Finder") + (description + "Application finder for Xfce, it will shows the applications installed on +your system in categories, so you can quickly find and launch them.") + (license gpl2+))) -- 2.1.2