diff options
author | Maxim Cournoyer <maxim@guixotic.coop> | 2025-07-28 14:25:32 +0900 |
---|---|---|
committer | Maxim Cournoyer <maxim@guixotic.coop> | 2025-07-28 15:54:59 +0900 |
commit | 60e5d61be989be010c1287f6ef02634494d72e25 (patch) | |
tree | a5cce6b4e2122a8001fc0943dcdfc3b9543abd8e | |
parent | 7adcbd55a7fa5f566a782cd26db45dad5ddfaeb6 (diff) |
gnu: libnotify: Disable tests.
Few seems to run libnotify's test suite, including upstream's CI. Let's not
let it hamper progress toward GNOME 48.
* gnu/packages/gnome.scm (libnotify) [#:tests?]: Set to #f.
Change-Id: I99b3d4bda48809614f816b08e875f900b71f88d4
-rw-r--r-- | gnu/packages/gnome.scm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index e735db960d..e955d5e84d 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -3204,6 +3204,9 @@ configuring CUPS.") (build-system meson-build-system) (arguments (list + ;; The recently added tests would require a notification daemon, which + ;; introduce a circular dependency with libnotify. + #:tests? #f #:phases #~(modify-phases %standard-phases (add-after 'install 'move-doc |