diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2021-03-11 17:35:32 -0500 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2021-03-12 09:04:07 -0500 |
commit | d8919224eda6fabc46dd8ea6dd3ac449eb61a7a8 (patch) | |
tree | 6890a8f2c57d7953513d8c0eea483f17cd10ca70 | |
parent | 22476d37837207ca1fb68d077f4d3de0b531e56c (diff) | |
download | guix-d8919224eda6fabc46dd8ea6dd3ac449eb61a7a8.tar.gz guix-d8919224eda6fabc46dd8ea6dd3ac449eb61a7a8.zip |
gnu: librsvg: Do not propagate 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 (librsvg)[propagated-inputs]: Remove gdk-pixbuf.
[inputs]: Add 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 c61b141eb6..56de2e5881 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -3335,11 +3335,11 @@ dealing with different structured file formats.") ("libcroco" ,libcroco) ("bzip2" ,bzip2) ("libgsf" ,libgsf) + ("gdk-pixbuf" ,gdk-pixbuf) ("libxml2" ,libxml2))) (propagated-inputs ;; librsvg-2.0.pc refers to all of that. `(("cairo" ,cairo) - ("gdk-pixbuf" ,gdk-pixbuf) ("glib" ,glib))) (home-page "https://wiki.gnome.org/LibRsvg") (synopsis "Render SVG files using Cairo") |