diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2021-03-11 17:37:57 -0500 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2021-03-12 09:04:07 -0500 |
commit | 5c467b2f222960563384bfbc9a5c320fd3e1e9c0 (patch) | |
tree | 2ecb97a2d3b262620a20bd1be5023af4a0c20dac | |
parent | 26487f6f8ab6cb3423a560f8dffe19a2708edbcc (diff) | |
download | guix-5c467b2f222960563384bfbc9a5c320fd3e1e9c0.tar.gz guix-5c467b2f222960563384bfbc9a5c320fd3e1e9c0.zip |
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.
-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 5620b32b11..5905e5da93 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -5424,7 +5424,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))) |