diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2021-10-29 23:13:40 -0400 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2021-11-11 12:18:28 -0500 |
commit | a8dd1d2abf06f93c740cfe18038d7b69ad889943 (patch) | |
tree | eb90ff708ccaeeacc39691a553c5226bfc3f3362 /gnu/packages | |
parent | b64d3bb6d45757b2b280b5c6fd45990989c2fcfd (diff) | |
download | guix-a8dd1d2abf06f93c740cfe18038d7b69ad889943.tar.gz guix-a8dd1d2abf06f93c740cfe18038d7b69ad889943.zip |
gnu: accountsservice: Use meson 0.59.4 to work around a bug in 0.60.0.
* gnu/packages/freedesktop.scm (accountsservice):
[meson]: Use meson-0.59.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/freedesktop.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/freedesktop.scm b/gnu/packages/freedesktop.scm index d0015c8622..003da5c7a5 100644 --- a/gnu/packages/freedesktop.scm +++ b/gnu/packages/freedesktop.scm @@ -64,6 +64,7 @@ #:use-module (gnu packages base) #:use-module (gnu packages bash) #:use-module (gnu packages boost) + #:use-module (gnu packages build-tools) #:use-module (gnu packages check) #:use-module (gnu packages cmake) #:use-module (gnu packages compression) @@ -1414,7 +1415,8 @@ message bus.") (base32 "16wwd633jak9ajyr1f1h047rmd09fhf3kzjz6g5xjsz0lwcj8azz")))) (build-system meson-build-system) (arguments - '(#:tests? #f ; XXX: tests require DocBook 4.1.2 + `(#:meson ,meson-0.59 ;see https://github.com/mesonbuild/meson/issues/6470 + #:tests? #f ; XXX: tests require DocBook 4.1.2 #:configure-flags '("--localstatedir=/var" "-Dsystemdsystemunitdir=/tmp/empty" |