diff options
author | 宋文武 <iyzsong@gmail.com> | 2015-05-23 10:00:22 +0800 |
---|---|---|
committer | 宋文武 <iyzsong@gmail.com> | 2015-05-23 10:13:50 +0800 |
commit | ac462e52a85d710a5196ac066473be5ce03c28c2 (patch) | |
tree | a35b934593f83f59c8b69412d176dad4a4b1310b | |
parent | 86a81222cad9841c67e9d9bcd46c567383e9a34f (diff) | |
download | patches-ac462e52a85d710a5196ac066473be5ce03c28c2.tar patches-ac462e52a85d710a5196ac066473be5ce03c28c2.tar.gz |
gnu: harfbuzz: Update to 0.9.40.
* gnu/packages/gtk.scm (harfbuzz): Update to 0.9.40.
-rw-r--r-- | gnu/packages/gtk.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm index 049c63162e..3f3f16a9a4 100644 --- a/gnu/packages/gtk.scm +++ b/gnu/packages/gtk.scm @@ -138,14 +138,14 @@ affine transformation (scale, rotation, shear, etc.)") (define-public harfbuzz (package (name "harfbuzz") - (version "0.9.22") + (version "0.9.40") (source (origin (method url-fetch) (uri (string-append "http://www.freedesktop.org/software/harfbuzz/release/harfbuzz-" version ".tar.bz2")) (sha256 (base32 - "1nkimwadri6v2kzrmz8y0crmy59gw0kg4i4f6cc786bngs0815lq")))) + "07rjp05axas96fp23lpf8l2yyfdj9yib4m0qjv592vdyhcsxaw8p")))) (build-system gnu-build-system) (inputs `(("cairo" ,cairo) @@ -153,7 +153,7 @@ affine transformation (scale, rotation, shear, etc.)") ("icu4c" ,icu4c))) (native-inputs `(("pkg-config" ,pkg-config) - ("python" ,python-wrapper))) + ("python" ,python-2))) ; incompatible with Python 3 (print syntax) (arguments `(#:configure-flags `("--with-graphite2=yes"))) (synopsis "OpenType text shaping engine") |