summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCayetano Santos <csantosb@inventati.org>2025-08-24 11:20:42 +0200
committerjgart <jgart@dismail.de>2025-08-25 11:14:20 -0500
commit5260cb171dfb7f051f9d5027f7d70f9996f40a4d (patch)
tree6e21d64a4ae565551248b3821acc92affa73732c
parentbb13fbbddde93310e4b20fee86f551110bbad171 (diff)
gnu: dmenu: Improve style.
* gnu/packages/suckless.scm (dmenu)[arguments]: Use G-Expressions. Change-Id: I9d3733a972e737a5a60f4019b84e05cc3b301f65 Signed-off-by: jgart <jgart@dismail.de>
-rw-r--r--gnu/packages/suckless.scm20
1 files changed, 11 insertions, 9 deletions
diff --git a/gnu/packages/suckless.scm b/gnu/packages/suckless.scm
index acbffe3bf97..7239cc1ae2c 100644
--- a/gnu/packages/suckless.scm
+++ b/gnu/packages/suckless.scm
@@ -294,15 +294,17 @@ optimising the environment for the application in use and the task performed.")
"0pvr6da1v7hmbnacpgxcxv1sakg1nckmw347xhwrhx1dzpk573qs"))))
(build-system gnu-build-system)
(arguments
- `(#:tests? #f ; no tests
- #:make-flags
- (list (string-append "CC=" ,(cc-for-target))
- (string-append "PREFIX=" %output)
- (string-append "FREETYPEINC="
- (assoc-ref %build-inputs "freetype")
- "/include/freetype2"))
- #:phases
- (modify-phases %standard-phases (delete 'configure))))
+ (list
+ #:tests? #f ; no tests
+ #:make-flags
+ #~(list
+ (string-append "CC=" #$(cc-for-target))
+ (string-append "PREFIX=" #$output)
+ (string-append "FREETYPEINC="
+ #$(this-package-input "freetype")
+ "/include/freetype2"))
+ #:phases
+ #~(modify-phases %standard-phases (delete 'configure))))
(inputs
(list freetype libxft libx11 libxinerama))
(home-page "https://tools.suckless.org/dmenu/")