From 0e2d8eff10dfb70c30413405d3c8d8f1c5588920 Mon Sep 17 00:00:00 2001 From: Cayetano Santos Date: Sun, 24 Aug 2025 13:15:51 +0200 Subject: [PATCH] gnu: blind: Improve style. * gnu/packages/suckless.scm (blind)[arguments]: Use G-Expressions. Change-Id: Ic44b942533f66903ebaabedc9decc74f96882b6e Signed-off-by: jgart --- gnu/packages/suckless.scm | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/gnu/packages/suckless.scm b/gnu/packages/suckless.scm index 6edc7c866539992ab578730cf7e5e4c2a0ea6a09..65b52f9c9df329d4628bc7c66f9d1fe7cf8aea4e 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