diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2024-05-23 14:02:32 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2024-05-23 20:39:13 +0300 |
commit | c9730b7029087995a748e6c04dd810d7517fa966 (patch) | |
tree | 4c5611b64541a606f19f7b8779796a2db866f931 /gnu | |
parent | 701aee876e0d02ae4eb301b83d14b05a951d6c29 (diff) | |
download | guix-c9730b7029087995a748e6c04dd810d7517fa966.tar.gz guix-c9730b7029087995a748e6c04dd810d7517fa966.zip |
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
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/gnome.scm | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index d18c256d62..a3b9799209 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -3266,9 +3266,8 @@ API add-ons to make GTK+ widgets OpenGL-capable.") (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))) |