diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-09-12 01:09:32 -0400 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-09-13 02:04:59 -0400 |
commit | 1ffeeac0c194342e72a6f2126e0cdef89fce4a5d (patch) | |
tree | 77af42dc441ddbd2e18c20c284582026f07488a1 /gnu/packages | |
parent | f8ef02ec76c7a3bf941497b668f618b425b2e057 (diff) | |
download | guix-1ffeeac0c194342e72a6f2126e0cdef89fce4a5d.tar.gz |
gnu: gnome-shell: Use libsoup 3 to fix tests.
* gnu/packages/gnome.scm (gnome-shell)[configure-flags]: Add -Dsoup2=false.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/gnome.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 8be82a5dd8..b8ad99ed59 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -9015,7 +9015,8 @@ properties, screen resolution, and other GNOME parameters.") #~(list "-Dsystemd=false" ;; Otherwise, the RUNPATH will lack the final path component. (string-append "-Dc_link_args=-Wl,-rpath=" - #$output "/lib/gnome-shell")) + #$output "/lib/gnome-shell") + "-Dsoup2=false") #:modules '((guix build meson-build-system) (guix build utils) (ice-9 match) |