diff options
Diffstat (limited to 'gnu/packages/vnc.scm')
-rw-r--r-- | gnu/packages/vnc.scm | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/gnu/packages/vnc.scm b/gnu/packages/vnc.scm index e26d8a3e35..f369e3bf40 100644 --- a/gnu/packages/vnc.scm +++ b/gnu/packages/vnc.scm @@ -695,7 +695,12 @@ authentication, SSH tunneling, and ZRLE or Tight encoding.") (sha256 (base32 "1k02i70v8niqvadzfrki8q6wiymcfdqanc9zlmzdslw2bpdhqq90")))) (build-system meson-build-system) - (native-inputs (list pkg-config scdoc)) + (native-inputs + (append (if (%current-target-system) + ;; for wayland-scanner + (list wayland) + '()) + (list pkg-config scdoc))) (inputs (list aml neatvnc zlib |