From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:37419) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1e3p9l-0000uX-W1 for guix-patches@gnu.org; Sun, 15 Oct 2017 16:05:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1e3p9j-0005So-JF for guix-patches@gnu.org; Sun, 15 Oct 2017 16:05:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:33325) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1e3p9j-0005Sj-FC for guix-patches@gnu.org; Sun, 15 Oct 2017 16:05:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1e3p9j-0001nU-6b for guix-patches@gnu.org; Sun, 15 Oct 2017 16:05:03 -0400 Subject: [bug#28853] [PATCH 3/8] gnu: spice-gtk: Enable GObject introspection support. Resent-Message-ID: From: Andy Patterson Date: Sun, 15 Oct 2017 16:03:23 -0400 Message-Id: <20171015200328.4830-3-ajpatter@uwaterloo.ca> In-Reply-To: <20171015151545.024a589f@uwaterloo.ca> References: <20171015151545.024a589f@uwaterloo.ca> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 28853@debbugs.gnu.org Allows virt-manager to use the spice-gtk widget. * gnu/packages/spice.scm (spice-gtk)[inputs]: Add gobject-introspection. [arguments]<#:configure-flags>: Add --enable-introspection. --- gnu/packages/spice.scm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gnu/packages/spice.scm b/gnu/packages/spice.scm index 8e3c5e2b7..7d49f90be 100644 --- a/gnu/packages/spice.scm +++ b/gnu/packages/spice.scm @@ -162,6 +162,7 @@ which allows users to view a desktop computing environment.") ("spice-protocol" ,spice-protocol))) (inputs `(("glib-networking" ,glib-networking) + ("gobject-introspection" ,gobject-introspection) ("gtk+" ,gtk+) ("libepoxy" ,libepoxy) ("libjpeg" ,libjpeg) @@ -182,7 +183,8 @@ which allows users to view a desktop computing environment.") `(#:configure-flags '("--enable-gstaudio" "--enable-gstvideo" - "--enable-pulse") + "--enable-pulse" + "--enable-introspection") #:phases (modify-phases %standard-phases (add-after -- 2.14.2