diff options
author | Zheng Junjie <zhengjunjie@iscas.ac.cn> | 2024-02-27 23:50:35 +0800 |
---|---|---|
committer | 宋文武 <iyzsong@member.fsf.org> | 2024-03-19 18:45:27 +0800 |
commit | 332d7c34289fd758204ce319ed997dffc5316805 (patch) | |
tree | 1ccb64e810f77b9208de281d66645d130106d3df | |
parent | 683a01b7a1af2ac638b5a64fc5ed4fb30d65d6a8 (diff) | |
download | guix-332d7c34289fd758204ce319ed997dffc5316805.tar.gz guix-332d7c34289fd758204ce319ed997dffc5316805.zip |
gnu: bspwm: Use Gexps.
* gnu/packages/wm.scm(bspwm)[arguments]: Use Gexps.
Change-Id: I47399c52c8ba9adb8ea95c2a05cc8ba4762bbca3
Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
-rw-r--r-- | gnu/packages/wm.scm | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm index d76f92c5ed..94d3cb7c10 100644 --- a/gnu/packages/wm.scm +++ b/gnu/packages/wm.scm @@ -187,13 +187,13 @@ xcb-util-keysyms xcb-util-wm)) (arguments - '(#:phases - (modify-phases %standard-phases - (delete 'configure)) ; no configure script - #:tests? #f ; no check target - #:make-flags - (list "CC=gcc" - (string-append "PREFIX=" %output)))) + (list #:phases + #~(modify-phases %standard-phases + (delete 'configure)) ; no configure script + #:tests? #f ; no check target + #:make-flags + #~(list "CC=gcc" + (string-append "PREFIX=" #$output)))) (home-page "https://github.com/baskerville/bspwm") (synopsis "Tiling window manager based on binary space partitioning") (description "bspwm is a tiling window manager that represents windows as |