diff options
author | 宋文武 <iyzsong@gmail.com> | 2015-09-15 20:02:40 +0800 |
---|---|---|
committer | 宋文武 <iyzsong@gmail.com> | 2015-09-15 20:11:52 +0800 |
commit | fd9b3b43ab92f33f3e7f5d546b34e329dbec97af (patch) | |
tree | a14aebbe41f02e37abb2f9b6016aebd84d8247e0 /gnu/packages/gtk.scm | |
parent | 40f4817846a5c722bb4de47aedb49a03198c62f3 (diff) | |
download | patches-fd9b3b43ab92f33f3e7f5d546b34e329dbec97af.tar patches-fd9b3b43ab92f33f3e7f5d546b34e329dbec97af.tar.gz |
gnu: harfbuzz: Propagate graphite2 and icu4c.
* gnu/packages/gtk.scm (harfbuzz): Move graphite2 and icu4c to 'propagated-inputs'.
[source]: Improve formatting.
Diffstat (limited to 'gnu/packages/gtk.scm')
-rw-r--r-- | gnu/packages/gtk.scm | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm index 79f3276ba8..f708afb190 100644 --- a/gnu/packages/gtk.scm +++ b/gnu/packages/gtk.scm @@ -146,19 +146,21 @@ affine transformation (scale, rotation, shear, etc.).") (name "harfbuzz") (version "1.0.3") (source (origin - (method url-fetch) - (uri (string-append "http://www.freedesktop.org/software/harfbuzz/release/harfbuzz-" - version ".tar.bz2")) - (sha256 - (base32 - "1xrxlrvgyr6mm9qjxmkif2kvcah082y94gf1vqi0f0bdl1g8gp7b")))) + (method url-fetch) + (uri (string-append "http://www.freedesktop.org/software/" + "harfbuzz/release/harfbuzz-" + version ".tar.bz2")) + (sha256 + (base32 + "1xrxlrvgyr6mm9qjxmkif2kvcah082y94gf1vqi0f0bdl1g8gp7b")))) (build-system gnu-build-system) (inputs - `(("cairo" ,cairo) + `(("cairo" ,cairo))) + (propagated-inputs + ;; There are all in the Requires or Requires.private field of '.pc'. + `(("glib" ,glib) ("graphite2" ,graphite2) ("icu4c" ,icu4c))) - (propagated-inputs - `(("glib" ,glib))) ; required by harfbuzz-gobject.pc (native-inputs `(("gobject-introspection" ,gobject-introspection) ("pkg-config" ,pkg-config) |