diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2021-03-11 17:39:13 -0500 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2021-03-12 09:04:08 -0500 |
commit | 42231bc15df441d6426dec57283aca9ae7a03fcf (patch) | |
tree | 5891b5a96d57dd0e973952246a22cd608e633694 | |
parent | ad6a9507c47ba2c69c12542d3597a268d078675d (diff) | |
download | guix-42231bc15df441d6426dec57283aca9ae7a03fcf.tar.gz guix-42231bc15df441d6426dec57283aca9ae7a03fcf.zip |
gnu: cheese: Propagate gdk-pixbuf+svg rather than gdk-pixbuf.
Propagating gdk-pixbuf rather than gdk-pixbuf+svg is dangerous as it clashes
with GTK+'s own gdk-pixbuf+svg propagation.
* gnu/packages/gnome.scm (cheese)[propagated-inputs]: Replace gdk-pixbuf by
gdk-pixbuf+svg.
-rw-r--r-- | gnu/packages/gnome.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 7a8ee103c1..f49808392c 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -10394,7 +10394,7 @@ photo-booth-like software, such as Cheese.") ("clutter-gst" ,clutter-gst) ("clutter-gtk" ,clutter-gtk) ("libcanberra" ,libcanberra) - ("gdk-pixbuf" ,gdk-pixbuf) + ("gdk-pixbuf" ,gdk-pixbuf+svg) ("glib" ,glib) ("gstreamer" ,gstreamer))) (inputs |