diff options
| author | Cayetano Santos <csantosb@inventati.org> | 2025-08-24 13:15:51 +0200 |
|---|---|---|
| committer | jgart <jgart@dismail.de> | 2025-08-25 11:14:29 -0500 |
| commit | 0e2d8eff10dfb70c30413405d3c8d8f1c5588920 (patch) | |
| tree | 33bafc97ce45480f2938169760946204bcebf811 /gnu | |
| parent | 589ce367802ac28f8b497687099a25aae61c1a8a (diff) | |
gnu: blind: Improve style.
* gnu/packages/suckless.scm (blind)[arguments]: Use G-Expressions.
Change-Id: Ic44b942533f66903ebaabedc9decc74f96882b6e
Signed-off-by: jgart <jgart@dismail.de>
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/suckless.scm | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/gnu/packages/suckless.scm b/gnu/packages/suckless.scm index 6edc7c86653..65b52f9c9df 100644 --- a/gnu/packages/suckless.scm +++ b/gnu/packages/suckless.scm @@ -213,12 +213,14 @@ It provides the following features: "0nncvzyipvkkd7zlgzwbjygp82frzs2hvbnk71gxf671np607y94")))) (build-system gnu-build-system) (arguments - `(#:tests? #f ; no check target - #:make-flags (list (string-append "CC=" ,(cc-for-target)) - (string-append "PREFIX=" %output)) - #:phases - (modify-phases %standard-phases - (delete 'configure)))) ; no configure script + (list + #:tests? #f ; no check target + #:make-flags + #~(list (string-append "CC=" #$(cc-for-target)) + (string-append "PREFIX=" #$output)) + #:phases + #~(modify-phases %standard-phases + (delete 'configure)))) ; no configure script (synopsis "Command line video editing utilities") (home-page "https://tools.suckless.org/blind/") (description |
