summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorNguyễn Gia Phong <cnx@loang.net>2026-03-03 16:09:06 +0900
committerCayetano Santos <csantosb@inventati.org>2026-03-03 08:47:59 +0100
commitbfefaabecc5d7ec22d0c268e2204c4659a341993 (patch)
treecf56d7f05f06e3139094e7f3e4d232b7da16340a /gnu
parent1e529196aa2c9ecb140b2ee87c1f75085a0d88da (diff)
gnu: awesome: Separate hypertext documentation.
* gnu/packages/wm.scm (awesome)[outputs]: Add "doc". [arguments]<#:configure-flags>: Set AWESOME_DOC_PATH. Merges guix/guix!6833 Change-Id: Ifb180d35ed14ef5b2fff49f718302e714f639aa5 Signed-off-by: Cayetano Santos <csantosb@inventati.org>
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/wm.scm4
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm
index a514f407d98..ba376ccd59c 100644
--- a/gnu/packages/wm.scm
+++ b/gnu/packages/wm.scm
@@ -1985,6 +1985,7 @@ for wlroots-based Wayland compositors.")
xcb-util-xrm
xcb-util-wm
xterm))
+ (outputs '("out" "doc"))
(arguments
`(#:modules ((guix build cmake-build-system)
(guix build utils)
@@ -1993,7 +1994,8 @@ for wlroots-based Wayland compositors.")
;; so that '--no-name' is used, which removes timestamps from
;; gzip output.
#:configure-flags
- '("-DCOMPRESS_MANPAGES=off")
+ ,#~(list (string-append "-DAWESOME_DOC_PATH=" #$output:doc)
+ "-DCOMPRESS_MANPAGES=off")
;; Building awesome in its source directory is no longer
;; supported.
#:out-of-source? #t