diff options
author | Bruno Victal <mirai@makinata.eu> | 2023-10-09 21:06:23 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-08-31 10:42:11 +0200 |
commit | 27b60ae829fc10bbf9bfd11f59d617e0bae8f2e5 (patch) | |
tree | 995accbf0bbe5869349c468ac57acf2437c4ba57 | |
parent | 653c40aeddcbbced439d1f4720dd39bf064a2267 (diff) | |
download | guix-27b60ae829fc10bbf9bfd11f59d617e0bae8f2e5.tar.gz |
gnu: gnome-session: Build documentation.
* gnu/packages/gnome.scm (gnome-session)[native-inputs]: Replace docbook-xml with docbook-xml-4.1.2. [arguments]<#:configure-flags>: Build documentation. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
-rw-r--r-- | gnu/packages/gnome.scm | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 010bf2f275..822d9acf8e 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -7757,15 +7757,13 @@ such as gzip tarballs.") (,(dirname (search-input-file (or native-inputs inputs) "bin/gdbus")))))))) #:configure-flags - '("-Ddocbook=false" ; FIXME: disabled because of docbook validation error - "-Dman=false" ; FIXME: disabled because of docbook validation error - "-Delogind=true" + '("-Delogind=true" "-Dsystemd=false" "-Dsystemd_session=disable" "-Dsystemd_journal=false"))) (build-system meson-build-system) (native-inputs - (list docbook-xml + (list docbook-xml-4.1.2 docbook-xsl `(,glib "bin") ; for glib-compile-schemas, etc. intltool |