guix_mirror_bot pushed a commit to branch master
in repository guix.
commit d039c386d56ca59489fbd34276d9c92d727b3f96
Author: Cayetano Santos <[email protected]>
AuthorDate: Tue Aug 26 13:28:52 2025 +0200
gnu: fortify-headers: Improve style.
* gnu/packages/suckless.scm (fortify-headers)[arguments]: Use
G-Expressions.
Change-Id: Ib5b4cdfb496e0c79f16cbcd244801b4eea9d243b
Signed-off-by: Danny Milosavljevic <[email protected]>
---
gnu/packages/suckless.scm | 15 ++++++++-------
1 file changed, 8 insertions(+), 7 deletions(-)
diff --git a/gnu/packages/suckless.scm b/gnu/packages/suckless.scm
index ac56c8d816..603b53dc9d 100644
--- a/gnu/packages/suckless.scm
+++ b/gnu/packages/suckless.scm
@@ -850,13 +850,14 @@ environment variable.")
(base32 "1w2jrscncq1jrg4wnsrr3a00p6h9mvkk3g1qkh1jdw1m747yjsci"))))
(build-system gnu-build-system)
(arguments
- `(#:tests? #f ; no tests
- #: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 tests
+ #:make-flags
+ #~(list (string-append "CC=" #$(cc-for-target))
+ (string-append "PREFIX=" #$output))
+ #:phases
+ #~(modify-phases %standard-phases
+ (delete 'configure)))) ; no configure script
(home-page "https://git.2f30.org/fortify-headers/")
(synopsis "Standalone fortify-source implementation")
(description