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 05/15] gnu: Add exo. Date: Wed, 10 Dec 2014 20:02:26 +0800 Message-ID: <1418212956-1698-5-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]:40274) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XyfzU-0004bL-0c for guix-devel@gnu.org; Wed, 10 Dec 2014 07:03:41 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XyfzN-0002Dc-Gj for guix-devel@gnu.org; Wed, 10 Dec 2014 07:03:35 -0500 Received: from mail-pa0-x22c.google.com ([2607:f8b0:400e:c03::22c]:60390) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XyfzN-0002DI-9c for guix-devel@gnu.org; Wed, 10 Dec 2014 07:03:29 -0500 Received: by mail-pa0-f44.google.com with SMTP id et14so2692938pad.17 for ; Wed, 10 Dec 2014 04:03:28 -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 (exo): New variable. --- gnu/packages/xfce.scm | 33 ++++++++++++++++++++++++++++++++- 1 file changed, 32 insertions(+), 1 deletion(-) diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm index 554548c..3954d1d 100644 --- a/gnu/packages/xfce.scm +++ b/gnu/packages/xfce.scm @@ -25,7 +25,8 @@ #:use-module (gnu packages glib) #:use-module (gnu packages gtk) #:use-module (gnu packages xorg) - #:use-module (gnu packages xdisorg)) + #:use-module (gnu packages xdisorg) + #:use-module (gnu packages web)) (define-public gtk-xfce-engine (package @@ -128,3 +129,33 @@ storage system.") "Libxfce4ui is the replacement of the old libxfcegui4 library. It is used to share commonly used Xfce widgets amoung the Xfce applications.") (license lgpl2.0+))) + +(define-public exo + (package + (name "exo") + (version "0.8.0") + (source (origin + (method url-fetch) + (uri (string-append "http://archive.xfce.org/xfce/4.10/src/" + name "-" version ".tar.bz2")) + (sha256 + (base32 + "1c05pbagw14djv5zmqg34qfj40jav8sd10w2zi2wpzrad4qal8bf")))) + (build-system gnu-build-system) + (native-inputs + `(("pkg-config" ,pkg-config) + ("intltool" ,intltool))) + (propagated-inputs + `(("gtk+" ,gtk+-2) + ("libxfce4util" ,libxfce4util))) + (inputs + `(("libxfce4ui" ,libxfce4ui) + ("perl-uri" ,perl-uri))) + (home-page "http://www.xfce.org/") + (synopsis "Extension library for Xfce") + (description + "An extension library to Xfce, developed by os-cillation. While Xfce comes +with quite a few libraries that are targeted at desktop development, libexo is +targeted at application development.") + ;; Libraries are under LGPLv2+, and programs under GPLv2+. + (license (list gpl2+ lgpl2.1+)))) -- 2.1.2