guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#56579] [PATCH] gnu: admin: Add fail2ban 0.11.2.


From: Jean Pierre De Jesus DIAZ
Subject: [bug#56579] [PATCH] gnu: admin: Add fail2ban 0.11.2.
Date: Sun, 17 Jul 2022 13:48:07 +0000

Hello muradm!

>+    (arguments
>+     '(#:phases (modify-phases %standard-phases

I think you can benefit a little bit from using G-Expressions here:

(arguments
  (list #:phases
        #~(modify-phases %modify-phases
            ...)))

For example:

>+                      (let* ((awk (assoc-ref inputs "gawk"))
>+                             (awk (string-append awk "/bin/awk"))

Could be replaced by:

(let* ((awk (string-append #$gawk "/bin/awk"))))

Applies to others too. Could save some vertical space.

—
Jean-Pierre De Jesus DIAZ





reply via email to

[Prev in Thread] Current Thread [Next in Thread]