diff options
author | Timothy Sample <samplet@ngyro.com> | 2021-11-18 00:16:22 -0500 |
---|---|---|
committer | Timothy Sample <samplet@ngyro.com> | 2021-11-18 10:10:16 -0500 |
commit | 40372653d9f6ea16c7f4428010ec7a5657b5f0b7 (patch) | |
tree | 1b8362d8bd4b94ae9a3de935ba4c6fedcf412e2f /gnu/packages | |
parent | 08806af6b19a03fb3367fe187fa6502de455a7a2 (diff) | |
download | guix-40372653d9f6ea16c7f4428010ec7a5657b5f0b7.tar.gz guix-40372653d9f6ea16c7f4428010ec7a5657b5f0b7.zip |
gnu: simple-scan: Build with Meson 0.59.
See <https://github.com/mesonbuild/meson/issues/9441>.
* gnu/packages/gnome.scm (simple-scan)[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 e1b45388fd..00d72cdbc4 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -6742,7 +6742,8 @@ USB transfers with your high-level application or system daemon.") (build-system meson-build-system) ;; TODO: Fix icons in home screen, About dialogue, and scan menu. (arguments - '(#:glib-or-gtk? #t)) + `(#:meson ,meson-0.59 ;positional arguments error with meson 0.60 + #:glib-or-gtk? #t)) (inputs `(("gtk" ,gtk+) ("zlib" ,zlib) |