raghavgururajan pushed a commit to branch wip-gnome
in repository guix.
commit c23ff6007aa1fbfbec943c70796032f494eca93d
Author: Raghav Gururajan <[email protected]>
AuthorDate: Thu Mar 11 10:35:56 2021 -0500
gnu: gdk-pixbuf: Correct inputs.
* gnu/packages/gtk.scm (gdk-pixbuf) [propagated-inputs]: Add libx11.
Remove libpng.
[inputs]: Add libpng. Remove libx11.
Signed-off-by: Léo Le Bouter <[email protected]>
---
gnu/packages/gtk.scm | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm
index 31ece43..8c004ef 100644
--- a/gnu/packages/gtk.scm
+++ b/gnu/packages/gtk.scm
@@ -610,13 +610,14 @@ highlighting and other features typical of a source code
editor.")
(propagated-inputs
`( ;; Required by gdk-pixbuf-2.0.pc
("glib" ,glib)
- ("libpng" ,libpng)
+ ;; Required by gdk-pixbuf-xlib-2.0.pc
+ ("libx11" ,libx11)
;; Used for testing and required at runtime.
("shared-mime-info" ,shared-mime-info)))
(inputs
`(("libjpeg" ,libjpeg-turbo)
- ("libtiff" ,libtiff)
- ("libx11" ,libx11)))
+ ("libpng" ,libpng)
+ ("libtiff" ,libtiff)))
(native-inputs
`(("pkg-config" ,pkg-config)
("gettext" ,gettext-minimal)