diff options
author | Ludovic Courtès <ludo@gnu.org> | 2021-12-19 17:44:01 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2021-12-19 23:39:55 +0100 |
commit | 7e5ed0884482f5ce55c9face4b081d8b16306cd2 (patch) | |
tree | b59ca9c7afa536825df15ea2509ba9282b24cc49 /gnu/packages/gnome.scm | |
parent | 939fa6a3b1481b81afc6e3e2d85d1cb7349e0776 (diff) |
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.scm | 12 |
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") |