diff options
| author | Efraim Flashner <efraim@flashner.co.il> | 2024-05-23 14:04:25 +0300 |
|---|---|---|
| committer | Efraim Flashner <efraim@flashner.co.il> | 2024-05-23 20:39:13 +0300 |
| commit | 1bfffc007aea291896a43f10114defe673c2bf5d (patch) | |
| tree | e10d1497d868d5de93b2bd50c3edfcd5a34e83d8 /gnu | |
| parent | c9730b7029087995a748e6c04dd810d7517fa966 (diff) | |
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
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/gnome.scm | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index a3b97992090..cb0f479a3ff 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm | |||
| @@ -9563,11 +9563,10 @@ like switching to windows and launching applications.") | |||
| 9563 | `(#:glib-or-gtk? #t)) ; To wrap binaries and/or compile schemas | 9563 | `(#:glib-or-gtk? #t)) ; To wrap binaries and/or compile schemas |
| 9564 | (native-inputs | 9564 | (native-inputs |
| 9565 | (append | 9565 | (append |
| 9566 | ;; GJS depends on Rust, which is x86_64-only so far, so remove the GJS | 9566 | ;; GJS depends on Rust so remove the GJS dependency on other platforms. |
| 9567 | ;; dependency on other platforms (FIXME). | 9567 | (if (supported-package? gjs) |
| 9568 | (if (target-x86-64?) | 9568 | (list gjs) |
| 9569 | (list gjs) | 9569 | '()) |
| 9570 | '()) | ||
| 9571 | (list gettext-minimal | 9570 | (list gettext-minimal |
| 9572 | `(,glib "bin") | 9571 | `(,glib "bin") |
| 9573 | gobject-introspection | 9572 | gobject-introspection |
