diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-11-18 21:30:13 -0500 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-11-20 14:09:24 -0500 |
commit | 248b0f79c180c876e3dd19617c9edd5e129c0534 (patch) | |
tree | 84852a76bdcabb32106eb70594b191891ef5f94c /gnu/packages/gtk.scm | |
parent | 051a6068b603e809ef65b86d7f993e7a302733bb (diff) | |
download | guix-248b0f79c180c876e3dd19617c9edd5e129c0534.tar.gz |
gnu: gtk+-2: Use librsvg-for-system.
* gnu/packages/gtk.scm (gtk+-2) [propagated-inputs]: Use librsvg-for-system.
Diffstat (limited to 'gnu/packages/gtk.scm')
-rw-r--r-- | gnu/packages/gtk.scm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm index 64c09aea4b..015044c268 100644 --- a/gnu/packages/gtk.scm +++ b/gnu/packages/gtk.scm @@ -878,11 +878,11 @@ is part of the GNOME accessibility project.") (build-system gnu-build-system) (outputs '("out" "bin" "doc" "debug")) (propagated-inputs - (list atk cairo - (if (target-x86-64?) - librsvg - librsvg-2.40) - glib pango)) + (list atk + cairo + glib + (librsvg-for-system) + pango)) (inputs (list cups libx11 |