diff options
author | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2024-08-17 11:03:44 +0200 |
---|---|---|
committer | John Kehayias <john.kehayias@protonmail.com> | 2024-08-31 17:29:12 -0400 |
commit | f2c8b4c07e7e73b8d0bfede7fc886b8b372bc781 (patch) | |
tree | 1f6ebb59181c46173f011d8cf8c409fdcd7c5393 /gnu | |
parent | 61a7930cb03f5eb9e8003bade21d61262c3db8df (diff) | |
download | guix-f2c8b4c07e7e73b8d0bfede7fc886b8b372bc781.tar guix-f2c8b4c07e7e73b8d0bfede7fc886b8b372bc781.tar.gz |
gnu: gtk: Update to 4.14.5.
Cherry picked from gnome-team 7dece4d20617d11284f280f8b7299c24a2305493.
A test failed after merging core-updates into master, though it passed
previously on both branches. It is unclear what has changed to make it fail.
The test is "4941/5465 gtk:gtk / notify" and fails with
stderr:
MESA: error: ZINK: failed to choose pdev
libEGL warning: egl: failed to create dri2 screen
MESA: error: ZINK: failed to choose pdev
glx: failed to create drisw screen
(test program exited with status code -5)
This newer version builds and passes all tests.
* gnu/packages/gtk.scm (gtk): Update to 4.14.5.
Signed-off-by: John Kehayias <john.kehayias@protonmail.com>
Change-Id: I6150b2df469358eb0e328f077a9c09a4c2259703
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/gtk.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm index 78572dde15..b7650748af 100644 --- a/gnu/packages/gtk.scm +++ b/gnu/packages/gtk.scm @@ -1141,7 +1141,7 @@ application suites.") (define-public gtk (package (name "gtk") - (version "4.14.2") + (version "4.14.5") (source (origin (method url-fetch) @@ -1149,7 +1149,7 @@ application suites.") (version-major+minor version) "/" name "-" version ".tar.xz")) (sha256 - (base32 "0wp0w259rkwf6g8sk2b9jkms47vx5gp7mfs345grx9wq53plqq12")) + (base32 "0kg286za53qhl6ngw4rrvbpm3q04g30qf2q77sck7c86y2wz4ism")) (patches (search-patches "gtk4-respect-GUIX_GTK4_PATH.patch")) (modules '((guix build utils))))) |