diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2021-10-15 23:56:42 -0400 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2021-11-11 12:18:16 -0500 |
commit | b071402d35427c7400dff224f54d6c57d35104e2 (patch) | |
tree | 4d8e0ee1d54ec43b76ade33ec9b1abab20c72ca6 | |
parent | 0d56844268c93620445dbedb01fd2e7992e78c0e (diff) |
gnu: pango: Update to 1.48.10.
* gnu/packages/gtk.scm (pango): Update to 1.48.10. Remove trailing #t.
[inputs]: Remove conditional on the bash-minimal input.
-rw-r--r-- | gnu/packages/gtk.scm | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm index e92c6b1398..35c66e9d32 100644 --- a/gnu/packages/gtk.scm +++ b/gnu/packages/gtk.scm @@ -362,7 +362,7 @@ applications.") (define-public pango (package (name "pango") - (version "1.48.9") + (version "1.48.10") (source (origin (method url-fetch) (uri (string-append "mirror://gnome/sources/pango/" @@ -371,10 +371,10 @@ applications.") (patches (search-patches "pango-skip-libthai-test.patch")) (sha256 (base32 - "1akj11n0ycqrm1rvi0fdfldqk7l5zk9vb8sq77009ap57xyna4x9")))) + "166wxhsjb6hb0dk7wkkdcmpvasl9n0a0aa64mdgagzfdidwzbq91")))) (build-system meson-build-system) (arguments - '(#:glib-or-gtk? #t ; To wrap binaries and/or compile schemas + '(#:glib-or-gtk? #t ; To wrap binaries and/or compile schemas #:phases (modify-phases %standard-phases (add-after 'unpack 'disable-cantarell-tests (lambda _ @@ -384,8 +384,7 @@ applications.") (("\\[ 'test-layout'.*") "") (("\\[ 'test-itemize'.*") "") (("\\[ 'test-font'.*") "") - (("\\[ 'test-harfbuzz'.*") "")) - #t))))) + (("\\[ 'test-harfbuzz'.*") ""))))))) (propagated-inputs ;; These are all in Requires or Requires.private of the '.pc' files. `(("cairo" ,cairo) @@ -400,13 +399,10 @@ applications.") ("libxft" ,libxft) ("libxrender" ,libxrender))) (inputs - ;; TODO(core-updates): Unconditionally add "bash-minimal" - `(,@(if (%current-target-system) - `(("bash-minimal" ,bash-minimal)) ; for glib-or-gtk-wrap - '()) + `(("bash-minimal" ,bash-minimal) ("zlib" ,zlib))) (native-inputs - `(("glib" ,glib "bin") ; glib-mkenums, etc. + `(("glib" ,glib "bin") ; glib-mkenums, etc. ("gobject-introspection" ,gobject-introspection) ; g-ir-compiler, etc. ("help2man" ,help2man) ("perl" ,perl) |