summary refs log tree commit diff
path: root/gnu/packages/gnome.scm
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2021-12-19 17:44:01 +0100
committerLudovic Courtès <ludo@gnu.org>2021-12-19 23:39:55 +0100
commit7e5ed0884482f5ce55c9face4b081d8b16306cd2 (patch)
treeb59ca9c7afa536825df15ea2509ba9282b24cc49 /gnu/packages/gnome.scm
parent939fa6a3b1481b81afc6e3e2d85d1cb7349e0776 (diff)
downloadguix-7e5ed0884482f5ce55c9face4b081d8b16306cd2.tar.gz
gnu: gnome-dictionary: Simplify inputs.
* gnu/packages/gnome.scm (gnome-dictionary)[native-inputs]: Simplify.
Diffstat (limited to 'gnu/packages/gnome.scm')
-rw-r--r--gnu/packages/gnome.scm12
1 files changed, 6 insertions, 6 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 2ee210e00e..fb048fb621 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -9819,12 +9819,12 @@ fit the GNOME desktop.")
              (substitute* "build-aux/meson/post-install.py"
                (("gtk-update-icon-cache") "true")))))))
     (native-inputs
-     `(("glib:bin" ,glib "bin")
-       ("gobject-introspection" ,gobject-introspection)
-       ("intltool" ,intltool)
-       ("itstool" ,itstool)
-       ("pkg-config" ,pkg-config)
-       ("xmllint" ,libxml2)))
+     (list `(,glib "bin")
+           gobject-introspection
+           intltool
+           itstool
+           pkg-config
+           libxml2))
     (inputs
      (list gsettings-desktop-schemas gtk+))
     (home-page "https://wiki.gnome.org/Apps/Dictionary")