diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-05-29 02:00:01 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-05-29 02:00:00 +0200 |
commit | 6e67786060de18a4abedbb4b94e468fb10e47960 (patch) | |
tree | ced79f3b050fe4d75fa2642c7526a9fc567a19e0 | |
parent | 2a3e1ba9409140c596ce298125d22d9142d0ad96 (diff) | |
download | guix-6e67786060de18a4abedbb4b94e468fb10e47960.tar guix-6e67786060de18a4abedbb4b94e468fb10e47960.tar.gz |
gnu: five-or-more: Remove input labels.
* gnu/packages/gnome.scm (five-or-more)[native-inputs]:
Remove input labels.
-rw-r--r-- | gnu/packages/gnome.scm | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index d0481c0302..a8bea0c3b9 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -4976,14 +4976,14 @@ and other secrets. It communicates with the \"Secret Service\" using DBus.") (substitute* "meson_post_install.py" (("gtk-update-icon-cache") (which "true")))))))) (native-inputs - `(("pkg-config" ,pkg-config) - ("appstream-glib" ,appstream-glib) - ("desktop-file-utils" ,desktop-file-utils) - ("glib:bin" ,glib "bin") ; for glib-compile-resources - ("intltool" ,intltool) - ("itstool" ,itstool) - ("vala" ,vala) - ("xmllint" ,libxml2))) + (list appstream-glib + desktop-file-utils + `(,glib "bin") ; for glib-compile-resources + intltool + itstool + libxml2 + pkg-config + vala)) (inputs (list gtk+ libgnome-games-support librsvg)) (home-page "https://wiki.gnome.org/Apps/Five%20or%20more") |