gnu: swaylock: Fix cross-compiling.
* gnu/packages/wm.scm (swaylock) [native-inputs]: When cross-compiling, add pkg-config-for-build wayland. [inputs]: When cross-compiling, add wayland-protocols. Change-Id: I24274502375f51411576642d87496b8be2e42c45 Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
This commit is contained in:
parent
0f2164c577
commit
a14a94deb2
1 changed files with 9 additions and 3 deletions
|
@ -41,7 +41,7 @@
|
||||||
;;; Copyright © 2020 B. Wilson <elaexuotee@wilsonb.com>
|
;;; Copyright © 2020 B. Wilson <elaexuotee@wilsonb.com>
|
||||||
;;; Copyright © 2020 Niklas Eklund <niklas.eklund@posteo.net>
|
;;; Copyright © 2020 Niklas Eklund <niklas.eklund@posteo.net>
|
||||||
;;; Copyright © 2020 Robert Smith <robertsmith@posteo.net>
|
;;; Copyright © 2020 Robert Smith <robertsmith@posteo.net>
|
||||||
;;; Copyright © 2021 Zheng Junjie <873216071@qq.com>
|
;;; Copyright © 2021, 2023 Zheng Junjie <873216071@qq.com>
|
||||||
;;; Copyright © 2021 Sharlatan Hellseher <sharlatanus@gmail.com>
|
;;; Copyright © 2021 Sharlatan Hellseher <sharlatanus@gmail.com>
|
||||||
;;; Copyright © 2021 qblade <qblade@protonmail.com>
|
;;; Copyright © 2021 qblade <qblade@protonmail.com>
|
||||||
;;; Copyright © 2021 lasnesne <lasnesne@lagunposprasihopre.org>
|
;;; Copyright © 2021 lasnesne <lasnesne@lagunposprasihopre.org>
|
||||||
|
@ -1845,8 +1845,14 @@ (define-public swaylock
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "03jrjwlwxkcyd6m9a1bbwapasnz7b7aws7h0y6jigjm4m478phv6"))))
|
(base32 "03jrjwlwxkcyd6m9a1bbwapasnz7b7aws7h0y6jigjm4m478phv6"))))
|
||||||
(build-system meson-build-system)
|
(build-system meson-build-system)
|
||||||
(inputs (list cairo gdk-pixbuf libxkbcommon linux-pam wayland))
|
(inputs (append (if (%current-target-system)
|
||||||
(native-inputs (list pango pkg-config scdoc wayland-protocols))
|
(list wayland-protocols)
|
||||||
|
'())
|
||||||
|
(list cairo gdk-pixbuf libxkbcommon linux-pam wayland)))
|
||||||
|
(native-inputs (append (if (%current-target-system)
|
||||||
|
(list pkg-config-for-build wayland)
|
||||||
|
'())
|
||||||
|
(list pango pkg-config scdoc wayland-protocols)))
|
||||||
(home-page "https://github.com/swaywm/sway")
|
(home-page "https://github.com/swaywm/sway")
|
||||||
(synopsis "Screen locking utility for Wayland compositors")
|
(synopsis "Screen locking utility for Wayland compositors")
|
||||||
(description "Swaylock is a screen locking utility for Wayland compositors.")
|
(description "Swaylock is a screen locking utility for Wayland compositors.")
|
||||||
|
|
Loading…
Reference in a new issue