mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: glade3: Build with gjs on more architectures.
* gnu/packages/gnome.scm (glade3)[inputs]: Use gjs as an input on architectures where it is supported. Change-Id: I6d6596045b7a3f0dc22207350b353fcd82961958
This commit is contained in:
parent
701aee876e
commit
c9730b7029
1 changed files with 2 additions and 3 deletions
|
@ -3266,9 +3266,8 @@ (define-public glade3
|
|||
(setenv "DISPLAY" ":1"))))))
|
||||
(inputs
|
||||
(append
|
||||
;; 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 depends on Rust so remove the GJS dependency on other platforms.
|
||||
(if (supported-package? gjs)
|
||||
(list gjs)
|
||||
'())
|
||||
(list gtk+ libxml2)))
|
||||
|
|
Loading…
Reference in a new issue