diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2021-03-11 17:33:07 -0500 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2021-11-11 10:31:16 -0500 |
commit | 30a731c2741470e49b9dc192f10d6917b9cb9874 (patch) | |
tree | 5f4d58087cdd04f030c016242cb7470493e50e6a /gnu/packages/glib.scm | |
parent | 14a81366e285a58f147669984558fd1660398a45 (diff) | |
download | guix-30a731c2741470e49b9dc192f10d6917b9cb9874.tar.gz |
gnu: appstream-glib: 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/glib.scm (appstream-glib)[propagated-inputs]: Replace gdk-pixbuf by gdk-pixbuf+svg.
Diffstat (limited to 'gnu/packages/glib.scm')
-rw-r--r-- | gnu/packages/glib.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/glib.scm b/gnu/packages/glib.scm index 6373fd0da9..c395eea9f8 100644 --- a/gnu/packages/glib.scm +++ b/gnu/packages/glib.scm @@ -1178,7 +1178,7 @@ Some codes examples can be find at: ("pkg-config" ,pkg-config))) (propagated-inputs `(("gcab" ,gcab) ; for .pc file - ("gdk-pixbuf" ,gdk-pixbuf) ; for .pc file + ("gdk-pixbuf" ,gdk-pixbuf+svg) ; for .pc file ("libuuid" ,util-linux "lib"))) ; for .pc file (inputs `(("glib" ,glib) |