gnu: msmtp: Use G-Expressions.
* gnu/packages/mail.scm (msmtp)[arguments]: Rewrite using G-Expressions.
This commit is contained in:
parent
f63ef9ab0d
commit
eed987855c
1 changed files with 17 additions and 15 deletions
|
|
@ -1736,14 +1736,16 @@ addons which can add many functionalities to the base client.")
|
||||||
(list pkg-config))
|
(list pkg-config))
|
||||||
(home-page "https://marlam.de/msmtp/")
|
(home-page "https://marlam.de/msmtp/")
|
||||||
(arguments
|
(arguments
|
||||||
`(#:configure-flags (list "--with-libgsasl"
|
(list
|
||||||
|
#:configure-flags
|
||||||
|
#~(list "--with-libgsasl"
|
||||||
"--with-libidn"
|
"--with-libidn"
|
||||||
"--with-tls=gnutls")
|
"--with-tls=gnutls")
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
#~(modify-phases %standard-phases
|
||||||
(add-after 'install 'install-additional-files
|
(add-after 'install 'install-additional-files
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
(let* ((out (assoc-ref outputs "out"))
|
(let* ((out #$output)
|
||||||
(bin (string-append out "/bin"))
|
(bin (string-append out "/bin"))
|
||||||
(doc (string-append out "/share/doc/msmtp"))
|
(doc (string-append out "/share/doc/msmtp"))
|
||||||
(msmtpq "scripts/msmtpq")
|
(msmtpq "scripts/msmtpq")
|
||||||
|
|
|
||||||
Reference in a new issue