diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-01-21 16:47:01 -0500 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-01-22 00:26:06 -0500 |
commit | d10c8f5ef1c2c7231d26202d4f432b48c9bc3611 (patch) | |
tree | 1442c5cd62ed0097fa7fa727bb9643cafd7d92fe | |
parent | 1a97e68de9527716f536fb0dc1ad028d0742a60d (diff) | |
download | guix-d10c8f5ef1c2c7231d26202d4f432b48c9bc3611.tar.gz |
gnu: cheese: Sort inputs.
* gnu/packages/gnome.scm (cheese): Sort inputs.
-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 1e68e7568d..6e89d43bec 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -11466,8 +11466,8 @@ photo-booth-like software, such as Cheese.") (,(getenv "GST_PLUGIN_SYSTEM_PATH"))))))))) (build-system meson-build-system) (native-inputs - (list docbook-xsl - docbook-xml-4.3 + (list docbook-xml-4.3 + docbook-xsl gettext-minimal `(,glib "bin") gobject-introspection @@ -11479,19 +11479,19 @@ photo-booth-like software, such as Cheese.") vala)) (propagated-inputs (list bash-minimal - gnome-video-effects clutter clutter-gst clutter-gtk - libcanberra gdk-pixbuf glib - gstreamer)) + gnome-video-effects + gstreamer + libcanberra)) (inputs (list gnome-desktop + gst-plugins-bad gst-plugins-base gst-plugins-good - gst-plugins-bad gtk+ libx11 libxtst)) |