diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-02-19 21:26:12 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-02-20 03:01:41 +0100 |
commit | 13236d30a70ece00d727b7f7f7c850f81d846d1d (patch) | |
tree | 6331f02bf0a555d023c210db444b6fbfa524d2ec /gnu/packages/gtk.scm | |
parent | c3800f0b6e1f510d0174c6b425bd34410182e502 (diff) | |
download | patches-13236d30a70ece00d727b7f7f7c850f81d846d1d.tar patches-13236d30a70ece00d727b7f7f7c850f81d846d1d.tar.gz |
gnu: pango: Update to 1.41.1.
* gnu/packages/gtk.scm (pango): Update to 1.41.1.
[inputs]: Add fribi.
Diffstat (limited to 'gnu/packages/gtk.scm')
-rw-r--r-- | gnu/packages/gtk.scm | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm index 4e12e66129..d83a5227f0 100644 --- a/gnu/packages/gtk.scm +++ b/gnu/packages/gtk.scm @@ -53,6 +53,7 @@ #:use-module (gnu packages enchant) #:use-module (gnu packages fontutils) #:use-module (gnu packages freedesktop) + #:use-module (gnu packages fribidi) #:use-module (gnu packages gettext) #:use-module (gnu packages ghostscript) #:use-module (gnu packages gl) @@ -211,7 +212,7 @@ affine transformation (scale, rotation, shear, etc.).") (define-public pango (package (name "pango") - (version "1.40.14") + (version "1.41.1") (source (origin (method url-fetch) (uri (string-append "mirror://gnome/sources/pango/" @@ -219,13 +220,14 @@ affine transformation (scale, rotation, shear, etc.).") name "-" version ".tar.xz")) (sha256 (base32 - "1qqpd8x1pl483ynj3mc5q4n8y2pxqhg2bv19vd94r7mzlzm1pbwh")))) + "1hxbwb9aak6m85i4kimsgq46nd3b68r6432xjna94a97ab7s8lqk")))) (build-system gnu-build-system) (propagated-inputs `(("cairo" ,cairo) ("harfbuzz" ,harfbuzz))) (inputs - `(("zlib" ,zlib) + `(("fribidi" ,fribidi) + ("zlib" ,zlib) ;; Some packages, such as Openbox, expect Pango to be built with the ;; optional libxft support. |