mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: fetchmail: Wrap fetchmailconf.
* gnu/packages/mail.scm (fetchmail)[arguments]: Add a phase to wrap fetchmailconf with GUIX_PYTHONPATH. [inputs]: Add bash-minimal, python-future, python-wrapper. Change-Id: I6f48361e7d739bfcaa2d1f20eb177933e5e7a5d8
This commit is contained in:
parent
5bda3f8a34
commit
bf2370a525
1 changed files with 13 additions and 2 deletions
|
@ -633,9 +633,20 @@ to run without any changes.")
|
||||||
(arguments
|
(arguments
|
||||||
(list #:configure-flags
|
(list #:configure-flags
|
||||||
#~(list (string-append "--with-ssl="
|
#~(list (string-append "--with-ssl="
|
||||||
#$(this-package-input "openssl")))))
|
#$(this-package-input "openssl")))
|
||||||
|
#:phases
|
||||||
|
#~(modify-phases %standard-phases
|
||||||
|
(add-after 'install 'wrap-fetchmailconf
|
||||||
|
(lambda _
|
||||||
|
(wrap-program (string-append #$output "/bin/fetchmailconf")
|
||||||
|
`("GUIX_PYTHONPATH" ":"
|
||||||
|
prefix (,(getenv "GUIX_PYTHONPATH")))))))))
|
||||||
(inputs
|
(inputs
|
||||||
(list openssl))
|
(list openssl
|
||||||
|
;; Needed for fetchmailconf
|
||||||
|
bash-minimal
|
||||||
|
python-future
|
||||||
|
python-wrapper))
|
||||||
(home-page "https://www.fetchmail.info/")
|
(home-page "https://www.fetchmail.info/")
|
||||||
(synopsis "Remote-mail retrieval and forwarding utility")
|
(synopsis "Remote-mail retrieval and forwarding utility")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue