mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-18 04:37:36 -05:00
gnu: gtk-vnc: Remove dependency on GJS on non-x86_64.
* gnu/packages/gnome.scm (gtk-vnc)[native-inputs]: Provide GJS only when 'target-x86-64?'. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
feb22a2037
commit
967dd6ee06
1 changed files with 6 additions and 1 deletions
|
@ -68,6 +68,7 @@
|
|||
;;; Copyright © 2022 Daniel Meißner <daniel.meissner-i4k@ruhr-uni-bochum.de>
|
||||
;;; Copyright © 2022 Pierre Langlois <pierre.langlois@gmx.com>
|
||||
;;; Copyright © 2022 John Kehayias <john.kehayias@protonmail.com>
|
||||
;;; Copyright © 2022 Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -8827,7 +8828,11 @@ (define-public gtk-vnc
|
|||
(arguments
|
||||
`(#:glib-or-gtk? #t)) ; To wrap binaries and/or compile schemas
|
||||
(native-inputs
|
||||
`(("gjs" ,gjs)
|
||||
`(;; GJS depends on Rust, which is x86_64-only so far, so remove the GJS
|
||||
;; dependency on other platforms (FIXME).
|
||||
,@(if (target-x86-64?)
|
||||
`(("gjs" ,gjs))
|
||||
'())
|
||||
("glib:bin" ,glib "bin")
|
||||
("gobject-introspection" ,gobject-introspection)
|
||||
("intltool" ,intltool)
|
||||
|
|
Loading…
Reference in a new issue