mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-10 05:09:33 -05:00
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 <lle-bout@zaclys.net>
This commit is contained in:
parent
298352a302
commit
4cd5cb19c0
1 changed files with 4 additions and 3 deletions
|
@ -606,13 +606,14 @@ (define-public gdk-pixbuf
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`( ;; Required by gdk-pixbuf-2.0.pc
|
`( ;; Required by gdk-pixbuf-2.0.pc
|
||||||
("glib" ,glib)
|
("glib" ,glib)
|
||||||
("libpng" ,libpng)
|
;; Required by gdk-pixbuf-xlib-2.0.pc
|
||||||
|
("libx11" ,libx11)
|
||||||
;; Used for testing and required at runtime.
|
;; Used for testing and required at runtime.
|
||||||
("shared-mime-info" ,shared-mime-info)))
|
("shared-mime-info" ,shared-mime-info)))
|
||||||
(inputs
|
(inputs
|
||||||
`(("libjpeg" ,libjpeg-turbo)
|
`(("libjpeg" ,libjpeg-turbo)
|
||||||
("libtiff" ,libtiff)
|
("libpng" ,libpng)
|
||||||
("libx11" ,libx11)))
|
("libtiff" ,libtiff)))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("pkg-config" ,pkg-config)
|
`(("pkg-config" ,pkg-config)
|
||||||
("gettext" ,gettext-minimal)
|
("gettext" ,gettext-minimal)
|
||||||
|
|
Loading…
Reference in a new issue