summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorMaxim Cournoyer <maxim@guixotic.coop>2026-03-22 11:44:09 +0900
committerNoƩ Lopez <noelopez@free.fr>2026-08-25 01:15:30 +0200
commit0af4cb08125f3cc37709b4e1c1e064d3c984d624 (patch)
treed45b820612f79f5abb497a9692639e4708e4163e /gnu
parentb0fb696b98bf7f9107135cb36b4d5b95a8432aff (diff)
gnu: gnome-desktop: Update to 44.5.
* gnu/packages/gnome.scm (gnome-desktop): Update to 44.5. [#:phases] {disable-failing-tests}: New phase. Change-Id: I878628048649797f020c4919a9be97f9e3b0549d
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/gnome.scm9
1 files changed, 7 insertions, 2 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index d23974a885a..d2e27800b45 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -2083,7 +2083,7 @@ offline sources, providing a centralized place for managing your contacts.")
2083(define-public gnome-desktop 2083(define-public gnome-desktop
2084 (package 2084 (package
2085 (name "gnome-desktop") 2085 (name "gnome-desktop")
2086 (version "44.4") 2086 (version "44.5")
2087 (source 2087 (source
2088 (origin 2088 (origin
2089 (method url-fetch) 2089 (method url-fetch)
@@ -2092,11 +2092,16 @@ offline sources, providing a centralized place for managing your contacts.")
2092 name "-" version ".tar.xz")) 2092 name "-" version ".tar.xz"))
2093 (sha256 2093 (sha256
2094 (base32 2094 (base32
2095 "1129nh32ga5vv869fwby3n2lvj2chd9wys8j1jdnisr8lg3bk30x")))) 2095 "0br33ma7l45nr8yp9bcjqgy9zrj57yy2fnkc0b0yh0rsdrd9kq10"))))
2096 (build-system meson-build-system) 2096 (build-system meson-build-system)
2097 (arguments 2097 (arguments
2098 '(#:phases 2098 '(#:phases
2099 (modify-phases %standard-phases 2099 (modify-phases %standard-phases
2100 (add-after 'unpack 'disable-problematic-tests
2101 (lambda _
2102 ;; The languages test fails due to Guix defaulting to C.UTF-8.
2103 (substitute* "tests/meson.build"
2104 ((".*'languages':.*") ""))))
2100 (add-before 'configure 'patch-path 2105 (add-before 'configure 'patch-path
2101 (lambda* (#:key inputs #:allow-other-keys) 2106 (lambda* (#:key inputs #:allow-other-keys)
2102 (substitute* "libgnome-desktop/gnome-languages.c" 2107 (substitute* "libgnome-desktop/gnome-languages.c"