From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:60384) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eibwZ-00048O-M8 for guix-patches@gnu.org; Mon, 05 Feb 2018 03:16:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eibwY-0008Dc-Pd for guix-patches@gnu.org; Mon, 05 Feb 2018 03:16:03 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:49788) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1eibwY-0008DW-Ky for guix-patches@gnu.org; Mon, 05 Feb 2018 03:16:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1eibwY-00052A-Bp for guix-patches@gnu.org; Mon, 05 Feb 2018 03:16:02 -0500 Subject: [bug#30354] [FIXME] gnu: appstream-glib: Propagate some inputs. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:60156) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eibvm-0003ia-Ab for guix-patches@gnu.org; Mon, 05 Feb 2018 03:15:18 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eibvi-0006tT-9B for guix-patches@gnu.org; Mon, 05 Feb 2018 03:15:14 -0500 Received: from dd26836.kasserver.com ([85.13.145.193]:47394) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1eibvi-0006rL-21 for guix-patches@gnu.org; Mon, 05 Feb 2018 03:15:10 -0500 From: Danny Milosavljevic Date: Mon, 5 Feb 2018 09:15:04 +0100 Message-Id: <20180205081504.5860-1-dannym@scratchpost.org> 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: 30354@debbugs.gnu.org * gnu/packages/glib.scm (appstream-glib)[inputs]: Move gcab, gdk-pixbuf, util-linux to propagated-inputs. --- gnu/packages/glib.scm | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/gnu/packages/glib.scm b/gnu/packages/glib.scm index 2c339c17d..4d689ca24 100644 --- a/gnu/packages/glib.scm +++ b/gnu/packages/glib.scm @@ -733,17 +733,18 @@ programming langauage. It also contains the utility `(("gettext" ,gettext-minimal) ("glib:bin" ,glib "bin") ; for glib-compile-resources ("pkg-config" ,pkg-config))) + (propagated-inputs + `(("gcab" ,gcab) ; for .pc file + ("gdk-pixbuf" ,gdk-pixbuf) ; for .pc file + ("util-linux" ,util-linux))) ; for .pc file (inputs - `(("gdk-pixbuf" ,gdk-pixbuf) - ("gcab" ,gcab) - ("glib" ,glib) + `(("glib" ,glib) ("gperf" ,gperf) ("gtk+" ,gtk+) ("json-glib" ,json-glib) ("libarchive" ,libarchive) ("libsoup" ,libsoup) - ("libyaml" ,libyaml) - ("util-linux" ,util-linux))) ; for libuuid + ("libyaml" ,libyaml))) (arguments `(#:configure-flags (list "-Ddep11=false"