diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-04-14 23:55:28 -0400 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-04-15 00:10:13 -0400 |
commit | 5841ac3981a3a08968704728cef14accd14e7a1c (patch) | |
tree | eeaaa1d9e081089d4347ee28884355198e1d39b8 /gnu/packages/xdisorg.scm | |
parent | 929551f634af9752b346043efa4d718796d1efc3 (diff) | |
download | guix-5841ac3981a3a08968704728cef14accd14e7a1c.tar.gz |
gnu: libxkbcommon: Unconditionally add wayland to native-inputs.
* gnu/packages/xdisorg.scm (libxkbcommon) [native-inputs]: Always add wayland.
Diffstat (limited to 'gnu/packages/xdisorg.scm')
-rw-r--r-- | gnu/packages/xdisorg.scm | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/gnu/packages/xdisorg.scm b/gnu/packages/xdisorg.scm index 2bb740ce8d..5b9c50d8bd 100644 --- a/gnu/packages/xdisorg.scm +++ b/gnu/packages/xdisorg.scm @@ -519,12 +519,9 @@ avoiding password prompts when X11 forwarding has already been setup.") wayland-protocols xkeyboard-config)) (native-inputs - (append (list bison doxygen pkg-config python) - (if (%current-target-system) - ;; wayland-scanner is required at build time. - ;; TODO: Remove this conditional on core-updates. - (list pkg-config-for-build wayland) - '()))) + (list bison doxygen pkg-config python + ;; wayland-scanner is required at build time. + wayland)) (arguments (list #:configure-flags #~(list (string-append "-Dxkb-config-root=" |