diff options
author | Marius Bakke <marius@gnu.org> | 2022-06-27 19:37:52 +0200 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2022-06-27 23:48:00 +0200 |
commit | febdbf011114c07e01cd04507b53cecf8d0388a6 (patch) | |
tree | d5eed518b0873d1a0eee026b8e61a2efafda35b9 | |
parent | 20bc806b044057d657e8ba6d10b6515bd1b702d4 (diff) |
gnu: harfbuzz: Update to 4.3.0.
* gnu/packages/gtk.scm (harfbuzz): Update to 4.3.0.
(harfbuzz-3.0): Remove variable.
* gnu/packages/chromium.scm (ungoogled-chromium)[inputs]: Change from
HARFBUZZ-3.0 to HARFBUZZ.
-rw-r--r-- | gnu/packages/chromium.scm | 2 | ||||
-rw-r--r-- | gnu/packages/gtk.scm | 17 |
2 files changed, 3 insertions, 16 deletions
diff --git a/gnu/packages/chromium.scm b/gnu/packages/chromium.scm index 0ee6210394..09a96eab02 100644 --- a/gnu/packages/chromium.scm +++ b/gnu/packages/chromium.scm @@ -886,7 +886,7 @@ gdk-pixbuf glib gtk+ - harfbuzz-3.0 + harfbuzz icu4c jsoncpp lcms diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm index bf88930b9c..e101f349ca 100644 --- a/gnu/packages/gtk.scm +++ b/gnu/packages/gtk.scm @@ -244,7 +244,7 @@ output. Experimental backends include OpenGL, BeOS, OS/2, and DirectFB.") (define-public harfbuzz (package (name "harfbuzz") - (version "2.8.2") + (version "4.3.0") (source (origin (method url-fetch) (uri (string-append "https://github.com/harfbuzz/harfbuzz" @@ -252,7 +252,7 @@ output. Experimental backends include OpenGL, BeOS, OS/2, and DirectFB.") version ".tar.xz")) (sha256 (base32 - "1rvv86wpm3y04fqns1655268rhvhvms469837709v2z2bhwn316m")))) + "0c5mzwgz43d37h75p4b6cgjg4v24jdd96i7gjpgxirn8qks2i5m4")))) (build-system gnu-build-system) (outputs '("out" "bin")) ; 160K, only hb-view depend on cairo @@ -279,19 +279,6 @@ output. Experimental backends include OpenGL, BeOS, OS/2, and DirectFB.") "See 'COPYING' in the distribution.")) (home-page "https://www.freedesktop.org/wiki/Software/HarfBuzz/"))) -(define-public harfbuzz-3.0 - (package - (inherit harfbuzz) - (version "3.0.0") - (source (origin - (method url-fetch) - (uri (string-append "https://github.com/harfbuzz/harfbuzz" - "/releases/download/" version - "/harfbuzz-" version ".tar.xz")) - (sha256 - (base32 - "1ngk8vn06rryx3s4v5pbl91bw1j1pd4431n77rw3j5a533hhwsq3")))))) - (define-public libdatrie (package (name "libdatrie") |