diff options
author | Timothy Sample <samplet@ngyro.com> | 2021-11-18 00:19:15 -0500 |
---|---|---|
committer | Timothy Sample <samplet@ngyro.com> | 2021-11-18 10:10:17 -0500 |
commit | ff7f928a106cf4f0c92bd25e5dae010897d45b4e (patch) | |
tree | 0c07fb34cef0e26244811cc78248e6171dfd4720 /gnu/packages | |
parent | 17ebc4eebeab0e4bef8094c40b0d853ba221edcd (diff) | |
download | guix-ff7f928a106cf4f0c92bd25e5dae010897d45b4e.tar guix-ff7f928a106cf4f0c92bd25e5dae010897d45b4e.tar.gz |
gnu: gnome-shell: Build with Meson 0.59.
See <https://github.com/mesonbuild/meson/issues/9441>.
* gnu/packages/gnome.scm (gnome-shell)[arguments]: Use meson-0.59.
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 bc5fdc3f88..009c93a393 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -8682,7 +8682,8 @@ properties, screen resolution, and other GNOME parameters.") (modules '((guix build utils))))) (build-system meson-build-system) (arguments - `(#:glib-or-gtk? #t + `(#:meson ,meson-0.59 ;positional arguments error with meson 0.60 + #:glib-or-gtk? #t #:disallowed-references ,(list (gexp-input glib "bin") (gexp-input libxslt) (gexp-input ruby-sass)) |