diff options
author | Timothy Sample <samplet@ngyro.com> | 2021-11-17 20:58:00 -0500 |
---|---|---|
committer | Timothy Sample <samplet@ngyro.com> | 2021-11-18 10:10:14 -0500 |
commit | 4f67a94d14ecee508b96d00198c4932b971b4ed5 (patch) | |
tree | dbdf49f5647972abc8b44df0f3d4f1012be6ddd8 | |
parent | e13b18b26ff221ff1a476b7c9e7abd423b956954 (diff) | |
download | guix-4f67a94d14ecee508b96d00198c4932b971b4ed5.tar guix-4f67a94d14ecee508b96d00198c4932b971b4ed5.tar.gz |
gnu: gnome-disk-utility: Build with Meson 0.59.
See <https://github.com/mesonbuild/meson/issues/9441>.
* gnu/packages/gnome.scm (gnome-disk-utility)
[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 7e42fabd3d..c6a0c25aa3 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -2326,7 +2326,8 @@ and keep up to date translations of documentation.") "1rr1ypb89p51b6428yqvczmpmylwjfnhnkgx78hzm3vxm3m15lff")))) (build-system meson-build-system) (arguments - '(#:configure-flags '("-Dlogind=libelogind") + `(#:meson ,meson-0.59 ;positional arguments error with meson 0.60 + #:configure-flags '("-Dlogind=libelogind") #:phases (modify-phases %standard-phases (add-after 'unpack 'skip-gtk-update-icon-cache |