mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 06:46:50 +01:00
gnu: sway: Switch from elogind to basu.
* gnu/packages/wm.scm (sway)[inputs]: Replace ‘elogind’ with ‘basu’. [arguments]<#:configure-flags>: Add "-Dsd-bus-provider=basu". Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
This commit is contained in:
parent
1cad129384
commit
1766a502da
1 changed files with 6 additions and 3 deletions
|
@ -1572,7 +1572,10 @@ (define-public sway
|
||||||
(base32 "0j4sdbsrlvky1agacc0pcz9bwmaxjmrapjnzscbd2i0cria2fc5j"))))
|
(base32 "0j4sdbsrlvky1agacc0pcz9bwmaxjmrapjnzscbd2i0cria2fc5j"))))
|
||||||
(build-system meson-build-system)
|
(build-system meson-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
`(;; elogind is propagated by wlroots -> libseat
|
||||||
|
;; and would otherwise shadow basu.
|
||||||
|
#:configure-flags '("-Dsd-bus-provider=basu")
|
||||||
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(add-before 'configure 'hardcode-paths
|
(add-before 'configure 'hardcode-paths
|
||||||
(lambda* (#:key inputs #:allow-other-keys)
|
(lambda* (#:key inputs #:allow-other-keys)
|
||||||
|
@ -1587,8 +1590,8 @@ (define-public sway
|
||||||
(string-append "'" (assoc-ref inputs "scdoc")
|
(string-append "'" (assoc-ref inputs "scdoc")
|
||||||
"/bin/scdoc'")))
|
"/bin/scdoc'")))
|
||||||
#t)))))
|
#t)))))
|
||||||
(inputs (list cairo
|
(inputs (list basu
|
||||||
elogind
|
cairo
|
||||||
gdk-pixbuf
|
gdk-pixbuf
|
||||||
json-c
|
json-c
|
||||||
libevdev
|
libevdev
|
||||||
|
|
Loading…
Reference in a new issue