me
/
guix
Archived
1
0
Fork 0

gnu: sway: Fix cross-compiling.

* gnu/packages/wm.scm (sway)[native-inputs]: When cross-compiling add
pkg-config-for-build, wayland.
Efraim Flashner 2023-10-15 13:08:18 +03:00
parent 76b706c71c
commit d7c5456a39
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 5 additions and 1 deletions

View File

@ -1723,7 +1723,11 @@ modules for building a Wayland compositor.")
wayland
wlroots))
(native-inputs
(list linux-pam mesa pkg-config scdoc wayland-protocols))
(cons* linux-pam mesa pkg-config scdoc wayland-protocols
(if (%current-target-system)
(list pkg-config-for-build
wayland)
'())))
(home-page "https://github.com/swaywm/sway")
(synopsis "Wayland compositor compatible with i3")
(description "Sway is a i3-compatible Wayland compositor.")