mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 06:36:37 -05:00
gnu: at-spi2-core: Propagate inputs dbus and glib.
* gnu/packages/gtk.scm (at-spi2-core): Move dbus and glib to 'propagated-inputs'.
This commit is contained in:
parent
af10867745
commit
c6a552daea
1 changed files with 7 additions and 4 deletions
|
@ -350,10 +350,13 @@ (define-public at-spi2-core
|
||||||
;; Run test-suite under a dbus session.
|
;; Run test-suite under a dbus session.
|
||||||
(lambda _
|
(lambda _
|
||||||
(zero? (system* "dbus-launch" "make" "check")))))))
|
(zero? (system* "dbus-launch" "make" "check")))))))
|
||||||
(inputs `(("dbus" ,dbus)
|
(propagated-inputs
|
||||||
("glib" ,glib)
|
;; atspi-2.pc refers to all these.
|
||||||
("libxi" ,libxi)
|
`(("dbus" ,dbus)
|
||||||
("libxtst" ,libxtst)))
|
("glib" ,glib)))
|
||||||
|
(inputs
|
||||||
|
`(("libxi" ,libxi)
|
||||||
|
("libxtst" ,libxtst)))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("intltool" ,intltool)
|
`(("intltool" ,intltool)
|
||||||
("pkg-config" ,pkg-config)))
|
("pkg-config" ,pkg-config)))
|
||||||
|
|
Loading…
Reference in a new issue