mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 05:39:41 -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")))))
|
||||
'()))))
|
||||
(propagated-inputs
|
||||
(list ;; Required by gdk-pixbuf-2.0.pc
|
||||
glib
|
||||
;; Required by gdk-pixbuf-xlib-2.0.pc
|
||||
;; TODO: Remove on core-updates.
|
||||
libx11
|
||||
;; Used for testing and required at runtime.
|
||||
shared-mime-info))
|
||||
(list glib ;in Requires of gdk-pixbuf-2.0.pc
|
||||
|
||||
;; These are in Requires.private of gdk-pixbuf-2.0.pc
|
||||
libjpeg-turbo
|
||||
libpng
|
||||
libtiff
|
||||
shared-mime-info)) ;required at runtime, too
|
||||
(inputs
|
||||
`(,@(if (%current-target-system)
|
||||
`(("bash-minimal" ,bash-minimal)) ; for glib-or-gtk-wrap
|
||||
'())
|
||||
("libjpeg" ,libjpeg-turbo)
|
||||
("libpng" ,libpng)
|
||||
("libtiff" ,libtiff)))
|
||||
(if (%current-target-system)
|
||||
(list bash-minimal) ;for glib-or-gtk-wrap
|
||||
'()))
|
||||
(native-inputs
|
||||
`(("docbook-xml" ,docbook-xml-4.3)
|
||||
("docbook-xsl" ,docbook-xsl)
|
||||
|
|
Loading…
Reference in a new issue