diff options
author | Timothy Sample <samplet@ngyro.com> | 2021-11-17 20:56:05 -0500 |
---|---|---|
committer | Timothy Sample <samplet@ngyro.com> | 2021-11-18 10:10:13 -0500 |
commit | 07170f6c49502ffc1111b6392b596032ec43f01c (patch) | |
tree | 5c356fefb331bd658a4d54d9d0669a367b062802 | |
parent | c8fa0c46d4d7abab38831a4221f0dc2b42e7a097 (diff) | |
download | guix-07170f6c49502ffc1111b6392b596032ec43f01c.tar.gz guix-07170f6c49502ffc1111b6392b596032ec43f01c.zip |
gnu: gnome-weather: Build with Meson 0.59.
See <https://github.com/mesonbuild/meson/issues/9441>.
* gnu/packages/gnome.scm (gnome-weather)[arguments]: Use meson-0.59.
-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 689a0a76ef..7e42fabd3d 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -9375,7 +9375,8 @@ associations for GNOME.") ("libgweather" ,libgweather) ("libhandy" ,libhandy))) (arguments - `(#:glib-or-gtk? #t + `(#:meson ,meson-0.59 ;positional arguments error with meson 0.60 + #:glib-or-gtk? #t #:phases ,#~(modify-phases %standard-phases (add-after 'unpack 'fix-service-file |