diff options
author | Marius Bakke <marius@gnu.org> | 2021-05-15 15:41:29 +0200 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2021-05-22 17:08:13 +0200 |
commit | 10755ceb441802d0acb2a0ceb50a3080cbf6b2db (patch) | |
tree | a1c3201b3d97716d1d7ef32e6def8a4142aae885 | |
parent | 582537d9309664cfe86e3bb4309e5f979f9c7b52 (diff) | |
download | guix-10755ceb441802d0acb2a0ceb50a3080cbf6b2db.tar.gz |
gnu: cairomm: Do not propagate fontconfig.
* gnu/packages/gtk.scm (cairomm)[propagated-inputs]: Move FONTCONFIG ... [inputs]: ... here. New field.
-rw-r--r-- | gnu/packages/gtk.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm index 8e2fff536a..7f637bcef6 100644 --- a/gnu/packages/gtk.scm +++ b/gnu/packages/gtk.scm @@ -1408,10 +1408,10 @@ guile-gnome-platform (GNOME developer libraries), and guile-gtksourceview.") ("perl" ,perl) ("pkg-config" ,pkg-config) ("xsltproc" ,libxslt))) + (inputs + `(("fontconfig" ,fontconfig))) (propagated-inputs `(("libsigc++" ,libsigc++) - ("freetype" ,freetype) - ("fontconfig" ,fontconfig) ("cairo" ,cairo))) (home-page "https://cairographics.org/") (synopsis "C++ bindings to the Cairo 2D graphics library") |