mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-15 23:48:07 -05:00
gnu: mblaze: Use G-expressions.
* gnu/packages/mail.scm (mblaze)[arguments]: Use G-expressions.
This commit is contained in:
parent
fde7fbe9dc
commit
45d36b0e2f
1 changed files with 8 additions and 6 deletions
|
@ -2726,12 +2726,14 @@ (define-public mblaze
|
|||
(native-inputs
|
||||
(list perl))
|
||||
(arguments
|
||||
`(#:make-flags (list (string-append "CC=" ,(cc-for-target))
|
||||
"PREFIX="
|
||||
(string-append "DESTDIR=" %output))
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(delete 'configure))))
|
||||
(list
|
||||
#:make-flags
|
||||
#~(list #$(string-append "CC=" (cc-for-target))
|
||||
"PREFIX="
|
||||
(string-append "DESTDIR=" #$output))
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(delete 'configure))))
|
||||
(home-page "https://github.com/leahneukirchen/mblaze")
|
||||
(synopsis "Unix utilities to deal with Maildir")
|
||||
(description
|
||||
|
|
Loading…
Reference in a new issue