gnu: gtk-vnc: Build with gjs on more architectures.
* gnu/packages/gnome.scm (gtk-vnc)[native-inputs] Use gjs as an input on architectures where it is supported. Change-Id: I723f53be8e225732572ede81a03d712a946be528
This commit is contained in:
parent
c9730b7029
commit
1bfffc007a
1 changed files with 4 additions and 5 deletions
|
@ -9563,11 +9563,10 @@ like switching to windows and launching applications.")
|
||||||
`(#:glib-or-gtk? #t)) ; To wrap binaries and/or compile schemas
|
`(#:glib-or-gtk? #t)) ; To wrap binaries and/or compile schemas
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(append
|
(append
|
||||||
;; GJS depends on Rust, which is x86_64-only so far, so remove the GJS
|
;; GJS depends on Rust so remove the GJS dependency on other platforms.
|
||||||
;; dependency on other platforms (FIXME).
|
(if (supported-package? gjs)
|
||||||
(if (target-x86-64?)
|
(list gjs)
|
||||||
(list gjs)
|
'())
|
||||||
'())
|
|
||||||
(list gettext-minimal
|
(list gettext-minimal
|
||||||
`(,glib "bin")
|
`(,glib "bin")
|
||||||
gobject-introspection
|
gobject-introspection
|
||||||
|
|
Reference in a new issue