guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/16: gnu: gtk-vnc: Remove input labels.


From: guix-commits
Subject: 02/16: gnu: gtk-vnc: Remove input labels.
Date: Thu, 1 Sep 2022 16:24:44 -0400 (EDT)

mbakke pushed a commit to branch master
in repository guix.

commit f5efb4271d28fe54ac68af9924711b6033f744e9
Author: Marius Bakke <marius@gnu.org>
AuthorDate: Thu Sep 1 19:13:23 2022 +0200

    gnu: gtk-vnc: Remove input labels.
    
    * gnu/packages/gnome.scm (gtk-vnc)[native-inputs]: Remove labels.
---
 gnu/packages/gnome.scm | 27 ++++++++++++++-------------
 1 file changed, 14 insertions(+), 13 deletions(-)

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 4b9d3ed217..9e8b68de33 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -8873,19 +8873,20 @@ like switching to windows and launching applications.")
     (arguments
      `(#:glib-or-gtk? #t))   ; To wrap binaries and/or compile schemas
     (native-inputs
-     `(;; 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)
-       ("node" ,node)
-       ("perl" ,perl)
-       ("pkg-config" ,pkg-config)
-       ("python" ,python-wrapper)
-       ("vala" ,vala)))
+     (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?)
+           (list gjs)
+           '())
+       (list `(,glib "bin")
+             gobject-introspection
+             intltool
+             node
+             perl
+             pkg-config
+             python-wrapper
+             vala)))
     (inputs
      (list cairo (librsvg-for-system)))
     (propagated-inputs



reply via email to

[Prev in Thread] Current Thread [Next in Thread]