From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:48506) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hSVLf-00010E-Pi for guix-patches@gnu.org; Sun, 19 May 2019 19:36:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hSVLZ-0001td-3z for guix-patches@gnu.org; Sun, 19 May 2019 19:36:11 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:50417) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hSVLY-0001tL-8p for guix-patches@gnu.org; Sun, 19 May 2019 19:36:04 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hSVLY-0002RX-3x for guix-patches@gnu.org; Sun, 19 May 2019 19:36:04 -0400 Subject: [bug#35804] [PATCH] libnotify didn't have propagated-inputs Resent-Message-ID: Received: from eggs.gnu.org ([209.51.188.92]:48397) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hSVL9-0000vD-PL for guix-patches@gnu.org; Sun, 19 May 2019 19:35:40 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hSV9S-0003lK-Ew for guix-patches@gnu.org; Sun, 19 May 2019 19:23:35 -0400 Received: from mail-lf1-x129.google.com ([2a00:1450:4864:20::129]:40103) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hSV9S-0003kK-6d for guix-patches@gnu.org; Sun, 19 May 2019 19:23:34 -0400 Received: by mail-lf1-x129.google.com with SMTP id h13so8907830lfc.7 for ; Sun, 19 May 2019 16:23:33 -0700 (PDT) Received: from localhost ([91.123.65.95]) by smtp.gmail.com with ESMTPSA id u4sm1714777lju.20.2019.05.19.16.23.31 for (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Sun, 19 May 2019 16:23:31 -0700 (PDT) Date: Mon, 20 May 2019 02:23:30 +0300 From: Uko =?UTF-8?Q?Kok=C5=86evi=C4=8Ds?= Message-ID: <20190519232207.i7xdlzrptnjwhvqk@keter.Dlink> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline 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: 35804@debbugs.gnu.org libnotify doesn't propagate other needed libraries for linking against it resulting in pkg-config errors like > Package gdk-pixbuf-2.0 was not found in the pkg-config search path. > Perhaps you should add the directory containing `gdk-pixbuf-2.0.pc' > to the PKG_CONFIG_PATH environment variable The following patch should fix that. >From 4cb942cd6b5389c29fa80d9af8442c3fa364406f Mon Sep 17 00:00:00 2001 From: Uko Koknevics Date: Mon, 20 May 2019 01:49:05 +0300 Subject: [PATCH] Added propagated-inputs to libnotify --- gnu/packages/gnome.scm | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 9070673..9c0cce9 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -1108,10 +1108,11 @@ configuring CUPS.") (base32 "017wgq9n00hx39n0hm784zn18hl721hbaijda868cm96bcqwxd4w")))) (build-system gnu-build-system) - (inputs + (propagated-inputs `(("gdk-pixbuf" ,gdk-pixbuf) - ("glib" ,glib) - ("gtk+" ,gtk+) + ("glib" ,glib))) + (inputs + `(("gtk+" ,gtk+) ("libpng" ,libpng))) (native-inputs `(("pkg-config" ,pkg-config) -- 2.21.0