~ruther/guix-local

5260cb171dfb7f051f9d5027f7d70f9996f40a4d — Cayetano Santos 8 months ago bb13fbb
gnu: dmenu: Improve style.

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

Change-Id: I9d3733a972e737a5a60f4019b84e05cc3b301f65
Signed-off-by: jgart <jgart@dismail.de>
1 files changed, 11 insertions(+), 9 deletions(-)

M gnu/packages/suckless.scm
M gnu/packages/suckless.scm => gnu/packages/suckless.scm +11 -9
@@ 294,15 294,17 @@ optimising the environment for the application in use and the task performed.")
                "0pvr6da1v7hmbnacpgxcxv1sakg1nckmw347xhwrhx1dzpk573qs"))))
    (build-system gnu-build-system)
    (arguments
     `(#:tests? #f                      ; no tests
       #:make-flags
       (list (string-append "CC=" ,(cc-for-target))
             (string-append "PREFIX=" %output)
             (string-append "FREETYPEINC="
                            (assoc-ref %build-inputs "freetype")
                            "/include/freetype2"))
       #:phases
       (modify-phases %standard-phases (delete 'configure))))
     (list
      #:tests? #f                      ; no tests
      #:make-flags
      #~(list
         (string-append "CC=" #$(cc-for-target))
         (string-append "PREFIX=" #$output)
         (string-append "FREETYPEINC="
                        #$(this-package-input "freetype")
                        "/include/freetype2"))
      #:phases
      #~(modify-phases %standard-phases (delete 'configure))))
    (inputs
     (list freetype libxft libx11 libxinerama))
    (home-page "https://tools.suckless.org/dmenu/")