mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
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 @@ (define-public msmtp
|
|||
(list pkg-config))
|
||||
(home-page "https://marlam.de/msmtp/")
|
||||
(arguments
|
||||
`(#:configure-flags (list "--with-libgsasl"
|
||||
"--with-libidn"
|
||||
"--with-tls=gnutls")
|
||||
(list
|
||||
#:configure-flags
|
||||
#~(list "--with-libgsasl"
|
||||
"--with-libidn"
|
||||
"--with-tls=gnutls")
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'install 'install-additional-files
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(let* ((out (assoc-ref outputs "out"))
|
||||
(bin (string-append out "/bin"))
|
||||
(doc (string-append out "/share/doc/msmtp"))
|
||||
(msmtpq "scripts/msmtpq")
|
||||
(vimfiles (string-append out "/share/vim/vimfiles/syntax")))
|
||||
(install-file (string-append msmtpq "/msmtpq") bin)
|
||||
(install-file (string-append msmtpq "/msmtp-queue") bin)
|
||||
(install-file (string-append msmtpq "/README.msmtpq") doc)
|
||||
(install-file "scripts/vim/msmtp.vim" vimfiles)))))))
|
||||
#~(modify-phases %standard-phases
|
||||
(add-after 'install 'install-additional-files
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(let* ((out #$output)
|
||||
(bin (string-append out "/bin"))
|
||||
(doc (string-append out "/share/doc/msmtp"))
|
||||
(msmtpq "scripts/msmtpq")
|
||||
(vimfiles (string-append out "/share/vim/vimfiles/syntax")))
|
||||
(install-file (string-append msmtpq "/msmtpq") bin)
|
||||
(install-file (string-append msmtpq "/msmtp-queue") bin)
|
||||
(install-file (string-append msmtpq "/README.msmtpq") doc)
|
||||
(install-file "scripts/vim/msmtp.vim" vimfiles)))))))
|
||||
(properties
|
||||
'((release-monitoring-url . "https://marlam.de/msmtp/download/")))
|
||||
(synopsis
|
||||
|
|
Loading…
Reference in a new issue