diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2021-03-11 17:38:27 -0500 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2021-03-12 09:04:08 -0500 |
commit | 5e02d1a2b20e5ddaeb9d8b70735d0990bb05b691 (patch) | |
tree | ca63ebfec59bd730774c8376016e5a7fc2496e99 /gnu/packages/gnome.scm | |
parent | 5c467b2f222960563384bfbc9a5c320fd3e1e9c0 (diff) | |
download | guix-5e02d1a2b20e5ddaeb9d8b70735d0990bb05b691.tar.gz guix-5e02d1a2b20e5ddaeb9d8b70735d0990bb05b691.zip |
gnu: cogl: 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 (cogl)[propagated-inputs]: Replace gdk-pixbuf by
gdk-pixbuf+svg.
Diffstat (limited to 'gnu/packages/gnome.scm')
-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 5905e5da93..dd733bb79a 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -5689,7 +5689,7 @@ throughout GNOME for API documentation).") ("pkg-config" ,pkg-config))) (propagated-inputs `(("glib" ,glib) - ("gdk-pixbuf" ,gdk-pixbuf) + ("gdk-pixbuf" ,gdk-pixbuf+svg) ("libx11" ,libx11) ("libxext" ,libxext) ("libxfixes" ,libxfixes) |