mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 22:38:07 -05:00
gnu: xorg-server: Enable Xephyr.
* gnu/packages/xorg.scm (xorg-server)[inputs]: Add xcb-util, xcb-util-image, xcb-util-keysyms, xcb-util-renderutil, xcb-util-wm. [arguments]: Add '--enable-kdrive' and '--enable-xephyr' configure-flags.
This commit is contained in:
parent
1d3d7fbd57
commit
324caeb109
1 changed files with 11 additions and 2 deletions
|
@ -5088,7 +5088,13 @@ (define-public xorg-server
|
||||||
("xkbcomp" ,xkbcomp)
|
("xkbcomp" ,xkbcomp)
|
||||||
("xkeyboard-config" ,xkeyboard-config)
|
("xkeyboard-config" ,xkeyboard-config)
|
||||||
("xtrans" ,xtrans)
|
("xtrans" ,xtrans)
|
||||||
("zlib" ,zlib)))
|
("zlib" ,zlib)
|
||||||
|
;; Inputs for Xephyr
|
||||||
|
("xcb-util" ,xcb-util)
|
||||||
|
("xcb-util-image" ,xcb-util-image)
|
||||||
|
("xcb-util-keysyms" ,xcb-util-keysyms)
|
||||||
|
("xcb-util-renderutil" ,xcb-util-renderutil)
|
||||||
|
("xcb-util-wm" ,xcb-util-wm)))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("python" ,python-minimal-wrapper)
|
`(("python" ,python-minimal-wrapper)
|
||||||
("pkg-config" ,pkg-config)))
|
("pkg-config" ,pkg-config)))
|
||||||
|
@ -5106,7 +5112,10 @@ (define-public xorg-server
|
||||||
"/bin")
|
"/bin")
|
||||||
|
|
||||||
;; For the log file, etc.
|
;; For the log file, etc.
|
||||||
"--localstatedir=/var")
|
"--localstatedir=/var"
|
||||||
|
;; For sddm
|
||||||
|
"--enable-kdrive"
|
||||||
|
"--enable-xephyr")
|
||||||
|
|
||||||
#:phases (alist-cons-before
|
#:phases (alist-cons-before
|
||||||
'configure 'pre-configure
|
'configure 'pre-configure
|
||||||
|
|
Loading…
Reference in a new issue