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 03/11] gnu: at-spi2-core: Propagate inputs dbus and glib. Date: Wed, 8 Apr 2015 11:34:26 +0800 Message-ID: <1428464074-9794-3-git-send-email-iyzsong@gmail.com> References: <1428464074-9794-1-git-send-email-iyzsong@gmail.com> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:52180) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Yfgku-0007tM-9F for guix-devel@gnu.org; Tue, 07 Apr 2015 23:34:21 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Yfgkp-0002Ew-Vr for guix-devel@gnu.org; Tue, 07 Apr 2015 23:34:20 -0400 Received: from mail-pd0-x22e.google.com ([2607:f8b0:400e:c02::22e]:34319) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Yfgkp-0002Df-Od for guix-devel@gnu.org; Tue, 07 Apr 2015 23:34:15 -0400 Received: by pdbqa5 with SMTP id qa5so43348458pdb.1 for ; Tue, 07 Apr 2015 20:34:15 -0700 (PDT) In-Reply-To: <1428464074-9794-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/gtk.scm (at-spi2-core): Move dbus and glib to 'propagated-inputs'. --- gnu/packages/gtk.scm | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm index 459112c..176017a 100644 --- a/gnu/packages/gtk.scm +++ b/gnu/packages/gtk.scm @@ -349,10 +349,13 @@ in the GNOME project.") ;; Run test-suite under a dbus session. (lambda _ (zero? (system* "dbus-launch" "make" "check"))))))) - (inputs `(("dbus" ,dbus) - ("glib" ,glib) - ("libxi" ,libxi) - ("libxtst" ,libxtst))) + (propagated-inputs + ;; atspi-2.pc refers to all these. + `(("dbus" ,dbus) + ("glib" ,glib))) + (inputs + `(("libxi" ,libxi) + ("libxtst" ,libxtst))) (native-inputs `(("intltool" ,intltool) ("pkg-config" ,pkg-config))) -- 2.2.1