mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-25 20:19:18 -05:00
gnu: gdk-pixbuf: Propagate private dependencies.
* gnu/packages/gtk.scm (gdk-pixbuf)[inputs]: Move LIBJPEG-TURBO, LIBPNG, and LIBTIFF ... [propagated-inputs]: ... here. Remove LIBX11 while at it.
This commit is contained in:
parent
1c526affa3
commit
8c698d7de6
1 changed files with 10 additions and 13 deletions
|
@ -671,20 +671,17 @@ (define-public gdk-pixbuf
|
||||||
(invoke "meson" "test" "--timeout-multiplier" "5")))))
|
(invoke "meson" "test" "--timeout-multiplier" "5")))))
|
||||||
'()))))
|
'()))))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list ;; Required by gdk-pixbuf-2.0.pc
|
(list glib ;in Requires of gdk-pixbuf-2.0.pc
|
||||||
glib
|
|
||||||
;; Required by gdk-pixbuf-xlib-2.0.pc
|
;; These are in Requires.private of gdk-pixbuf-2.0.pc
|
||||||
;; TODO: Remove on core-updates.
|
libjpeg-turbo
|
||||||
libx11
|
libpng
|
||||||
;; Used for testing and required at runtime.
|
libtiff
|
||||||
shared-mime-info))
|
shared-mime-info)) ;required at runtime, too
|
||||||
(inputs
|
(inputs
|
||||||
`(,@(if (%current-target-system)
|
(if (%current-target-system)
|
||||||
`(("bash-minimal" ,bash-minimal)) ; for glib-or-gtk-wrap
|
(list bash-minimal) ;for glib-or-gtk-wrap
|
||||||
'())
|
'()))
|
||||||
("libjpeg" ,libjpeg-turbo)
|
|
||||||
("libpng" ,libpng)
|
|
||||||
("libtiff" ,libtiff)))
|
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("docbook-xml" ,docbook-xml-4.3)
|
`(("docbook-xml" ,docbook-xml-4.3)
|
||||||
("docbook-xsl" ,docbook-xsl)
|
("docbook-xsl" ,docbook-xsl)
|
||||||
|
|
Loading…
Reference in a new issue