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: muradm
Subject: [bug#56579] [PATCH] gnu: admin: Add fail2ban 0.11.2.
Date: Sun, 17 Jul 2022 19:13:48 +0300
User-agent: mu4e 1.6.11; emacs 29.0.50


Hi, I think you are commenting on initial versions.
Please refer to last v5, which is quite crafted.

Jean Pierre De Jesus DIAZ <me@jeandudey.tech> writes:

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

Attachment: signature.asc
Description: PGP signature


reply via email to

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