gnu: sxhkd: Use Gexps.
* gnu/packages/xdisorg.scm(sxhkd)[arguments]: Use Gexps. Change-Id: Ib2379193014fdfe21de161691dac46d6e9feb758 Signed-off-by: 宋文武 <iyzsong@member.fsf.org>master
parent
d67b764ceb
commit
a356eb7b94
|
@ -41,7 +41,7 @@
|
||||||
;;; Copyright © 2020 Gabriel Arazas <foo.dogsquared@gmail.com>
|
;;; Copyright © 2020 Gabriel Arazas <foo.dogsquared@gmail.com>
|
||||||
;;; Copyright © 2020 James Smith <jsubuntuxp@disroot.org>
|
;;; Copyright © 2020 James Smith <jsubuntuxp@disroot.org>
|
||||||
;;; Copyright © 2020 B. Wilson <elaexuotee@wilsonb.com>
|
;;; Copyright © 2020 B. Wilson <elaexuotee@wilsonb.com>
|
||||||
;;; Copyright © 2020, 2021, 2023 Zheng Junjie <873216071@qq.com>
|
;;; Copyright © 2020, 2021, 2023, 2024 Zheng Junjie <873216071@qq.com>
|
||||||
;;; Copyright © 2021, 2022, 2023 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
;;; Copyright © 2021, 2022, 2023 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
||||||
;;; Copyright © 2021, 2022, 2024 Nicolas Goaziou <mail@nicolasgoaziou.fr>
|
;;; Copyright © 2021, 2022, 2024 Nicolas Goaziou <mail@nicolasgoaziou.fr>
|
||||||
;;; Copyright © 2021 Xinglu Chen <public@yoctocell.xyz>
|
;;; Copyright © 2021 Xinglu Chen <public@yoctocell.xyz>
|
||||||
|
@ -1343,14 +1343,14 @@ Guile will work for XBindKeys.")
|
||||||
(inputs
|
(inputs
|
||||||
(list asciidoc libxcb xcb-util xcb-util-keysyms xcb-util-wm))
|
(list asciidoc libxcb xcb-util xcb-util-keysyms xcb-util-wm))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases (modify-phases %standard-phases (delete 'configure))
|
(list #:phases #~(modify-phases %standard-phases (delete 'configure))
|
||||||
#:tests? #f ; no check target
|
#:tests? #f ; no check target
|
||||||
#:make-flags
|
#:make-flags
|
||||||
(list ,(string-append "CC=" (cc-for-target))
|
#~(list (string-append "CC=" #$(cc-for-target))
|
||||||
(string-append "PREFIX=" %output)
|
(string-append "PREFIX=" #$output)
|
||||||
;; Keep the documentation where the build system installs LICENSE.
|
;; Keep the documentation where the build system installs LICENSE.
|
||||||
(string-append "DOCPREFIX=" %output
|
(string-append "DOCPREFIX=" #$output
|
||||||
"/share/doc/" ,name "-" ,version))))
|
"/share/doc/" #$name "-" #$version))))
|
||||||
(home-page "https://github.com/baskerville/sxhkd")
|
(home-page "https://github.com/baskerville/sxhkd")
|
||||||
(synopsis "Simple X hotkey daemon")
|
(synopsis "Simple X hotkey daemon")
|
||||||
(description "sxhkd is a simple X hotkey daemon with a powerful and
|
(description "sxhkd is a simple X hotkey daemon with a powerful and
|
||||||
|
|
Reference in New Issue