~ruther/guix-local

d039c386d56ca59489fbd34276d9c92d727b3f96 — Cayetano Santos 6 months ago e52cf5f
gnu: fortify-headers: Improve style.

* gnu/packages/suckless.scm (fortify-headers)[arguments]: Use
G-Expressions.

Change-Id: Ib5b4cdfb496e0c79f16cbcd244801b4eea9d243b
Signed-off-by: Danny Milosavljevic <dannym@friendly-machines.com>
1 files changed, 8 insertions(+), 7 deletions(-)

M gnu/packages/suckless.scm
M gnu/packages/suckless.scm => gnu/packages/suckless.scm +8 -7
@@ 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