diff options
| author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2021-03-11 17:38:27 -0500 | 
|---|---|---|
| committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2021-11-11 10:31:17 -0500 | 
| commit | dba5c63e8c53625e6833ec755c7f778484d9baf2 (patch) | |
| tree | a4b4ac368f6a49c6d9e5a1a72d6466874c7c59aa | |
| parent | 4ad44af2649c63e99b183e100ecb68cd960568ab (diff) | |
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.
| -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 aedde8bd66..6d5fe54a97 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -5745,7 +5745,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) | 
