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 08/15] gnu: Add xfce4-panel. Date: Wed, 10 Dec 2014 20:02:29 +0800 Message-ID: <1418212956-1698-8-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]:40484) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Xyg08-0004qP-4Y for guix-devel@gnu.org; Wed, 10 Dec 2014 07:04:22 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Xyg02-0002Lj-4w for guix-devel@gnu.org; Wed, 10 Dec 2014 07:04:16 -0500 Received: from mail-pa0-x22a.google.com ([2607:f8b0:400e:c03::22a]:35549) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Xyg01-0002Lc-U4 for guix-devel@gnu.org; Wed, 10 Dec 2014 07:04:10 -0500 Received: by mail-pa0-f42.google.com with SMTP id et14so2713878pad.1 for ; Wed, 10 Dec 2014 04:04:09 -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-panel): 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 3200993..2f63562 100644 --- a/gnu/packages/xfce.scm +++ b/gnu/packages/xfce.scm @@ -225,3 +225,33 @@ merging features essential for loading menus modified with menu editors.") various URI schemes and MIME types. It is an implementation of the thumbnail management D-Bus specification.") (license gpl2+))) + +(define-public xfce4-panel + (package + (name "xfce4-panel") + (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 + "1f8903nx6ivzircl8d8s9zna4vjgfy0qhjk5d2x19g9bmycgj89k")))) + (build-system gnu-build-system) + (native-inputs + `(("pkg-config" ,pkg-config) + ("intltool" ,intltool))) + (propagated-inputs + `(("libxfce4util" ,libxfce4util))) + (inputs + `(("exo" ,exo) + ("garcon", garcon) + ("libwnck" ,libwnck-1) + ("libxfce4ui" ,libxfce4ui))) + (home-page "http://www.xfce.org/") + (synopsis "XFCE Desktop Panel") + (description + "Desktop panel for Xfce, which contains program launchers, window buttons, +applications menu, workspace switcher and more.") + ;; Libraries are under LGPLv2.1+, and programs under GPLv2+. + (license (list gpl2+ lgpl2.1+)))) -- 2.1.2