diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2021-03-11 17:37:57 -0500 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2021-11-11 10:31:17 -0500 |
commit | 4ad44af2649c63e99b183e100ecb68cd960568ab (patch) | |
tree | b2417aae0778db6cd391581cd0e6eab5239aeabb /gnu | |
parent | 91e40dd2ed3fdf9cc750896358c02bea681a31c7 (diff) | |
download | guix-4ad44af2649c63e99b183e100ecb68cd960568ab.tar.gz |
gnu: libgweather: 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 (libgweather)[propagated-inputs]: Replace gdk-pixbuf by gdk-pixbuf+svg.
Diffstat (limited to 'gnu')
-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 7785b3b9d9..aedde8bd66 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -5483,7 +5483,7 @@ service via the system message bus.") ;; gweather-3.0.pc refers to GTK+, GDK-Pixbuf, GLib/GObject, libxml, and ;; libsoup. `(("gtk+" ,gtk+) - ("gdk-pixbuf" ,gdk-pixbuf) + ("gdk-pixbuf" ,gdk-pixbuf+svg) ("libxml2" ,libxml2) ("libsoup" ,libsoup) ("geocode-glib" ,geocode-glib))) |