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,22 +1736,24 @@ 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
|
||||||
"--with-libidn"
|
#:configure-flags
|
||||||
"--with-tls=gnutls")
|
#~(list "--with-libgsasl"
|
||||||
|
"--with-libidn"
|
||||||
|
"--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")
|
||||||
(vimfiles (string-append out "/share/vim/vimfiles/syntax")))
|
(vimfiles (string-append out "/share/vim/vimfiles/syntax")))
|
||||||
(install-file (string-append msmtpq "/msmtpq") bin)
|
(install-file (string-append msmtpq "/msmtpq") bin)
|
||||||
(install-file (string-append msmtpq "/msmtp-queue") bin)
|
(install-file (string-append msmtpq "/msmtp-queue") bin)
|
||||||
(install-file (string-append msmtpq "/README.msmtpq") doc)
|
(install-file (string-append msmtpq "/README.msmtpq") doc)
|
||||||
(install-file "scripts/vim/msmtp.vim" vimfiles)))))))
|
(install-file "scripts/vim/msmtp.vim" vimfiles)))))))
|
||||||
(properties
|
(properties
|
||||||
'((release-monitoring-url . "https://marlam.de/msmtp/download/")))
|
'((release-monitoring-url . "https://marlam.de/msmtp/download/")))
|
||||||
(synopsis
|
(synopsis
|
||||||
|
|
|
||||||
Reference in a new issue