gnu: msmtp: Install additional files.
* gnu/packages/mail.scm (msmtp)[arguments]: Rename custom phase install-msmtpq to install-additional-files. Install vim plugins.
This commit is contained in:
parent
78ca483a07
commit
34e549d813
|
@ -1173,15 +1173,17 @@ which can add many functionalities to the base client.")
|
||||||
"--with-tls=gnutls")
|
"--with-tls=gnutls")
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(add-after 'install 'install-msmtpq
|
(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 (assoc-ref outputs "out"))
|
||||||
(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 (string-append "scripts/msmtpq")))
|
(msmtpq "scripts/msmtpq")
|
||||||
|
(vimfiles (string-append out "/share/vim/vimfiles/plugin")))
|
||||||
(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)
|
||||||
#t))))))
|
#t))))))
|
||||||
(synopsis
|
(synopsis
|
||||||
"Simple and easy to use SMTP client with decent sendmail compatibility")
|
"Simple and easy to use SMTP client with decent sendmail compatibility")
|
||||||
|
|
Loading…
Reference in New Issue