diff options
author | Andreas Enge <andreas@enge.fr> | 2013-07-15 23:15:45 +0200 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2013-07-15 23:15:45 +0200 |
commit | 4169a4bcb5cb9e9f89f3aadecebcf0c5985b2eac (patch) | |
tree | 430201cf85093f4677f8587b22b9df5312b96fd7 /gnu | |
parent | cf2135ff4816746dbc671b08ab87cb6466077acc (diff) |
gnu: pango, gtk+: Propagate inputs.
* gnu/packages/gtk.scm (pango): Propagate input cairo.
* gnu/packages/gtk.scm (gtk+): Propagate inputs atk, gdk-pixbuf and pango;
drop input cairo, propagated through pango.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/gtk.scm | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm index 3776e5adc0..7fb2f747ef 100644 --- a/gnu/packages/gtk.scm +++ b/gnu/packages/gtk.scm @@ -144,10 +144,10 @@ affine transformation (scale, rotation, shear, etc.)") "0k7662qix7zzh7mf6ikdj594n8jpbfm25z8swz64zbm86kgk1shs")))) (build-system gnu-build-system) (propagated-inputs - `(("harfbuzz" ,harfbuzz))) - (inputs `(("cairo" ,cairo) - ("pkg-config" ,pkg-config) + ("harfbuzz" ,harfbuzz))) + (inputs + `(("pkg-config" ,pkg-config) ("zlib" ,zlib))) (synopsis "GNOME text and font handling library") (description @@ -194,12 +194,12 @@ in the GNOME project.") (base32 "18qdvb7nxi25hfnpmcy01p3majw9jnx83ikm263dk9rrjazvqrnc")))) (build-system gnu-build-system) - (inputs + (propagated-inputs `(("atk" ,atk) - ("cairo" ,cairo) ("gdk-pixbuf" ,gdk-pixbuf) - ("pango" ,pango) - ("pkg-config" ,pkg-config))) + ("pango" ,pango))) + (inputs + `(("pkg-config" ,pkg-config))) (arguments `(#:phases (alist-replace |