mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 22:50:23 -05:00
gnu: xorg-server-xwayland: Fix cross-compiling.
* gnu/packages/xorg.scm (xorg-server-xwayland)[native-inputs]: When cross-compiling add pkg-config-for-build, wayland, wayland-protocols.
This commit is contained in:
parent
f668e5c8d2
commit
302b14fb19
1 changed files with 6 additions and 1 deletions
|
@ -5289,7 +5289,12 @@ (define-public xorg-server-xwayland
|
|||
xkeyboard-config
|
||||
xorgproto
|
||||
xtrans))
|
||||
(native-inputs (list pkg-config))
|
||||
(native-inputs (cons pkg-config
|
||||
(if (%current-target-system)
|
||||
(list pkg-config-for-build
|
||||
wayland
|
||||
wayland-protocols)
|
||||
'())))
|
||||
(build-system meson-build-system)
|
||||
(arguments
|
||||
`(#:configure-flags
|
||||
|
|
Loading…
Reference in a new issue