mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: fetchmail: Use G-expressions.
* gnu/packages/mail.scm (fetchmail)[arguments]: Rewrite as G-expressions.
This commit is contained in:
parent
53e759fbde
commit
f5b8f9541f
1 changed files with 4 additions and 4 deletions
|
@ -576,12 +576,12 @@ (define-public fetchmail
|
|||
(sha256
|
||||
(base32 "1sk9grjiibmaq8swfkr30vbfdz2i4ra1xrvsqdmbx6iyi5fjw62a"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
(list #:configure-flags
|
||||
#~(list (string-append "--with-ssl="
|
||||
#$(this-package-input "openssl")))))
|
||||
(inputs
|
||||
(list openssl))
|
||||
(arguments
|
||||
`(#:configure-flags
|
||||
(list (string-append "--with-ssl="
|
||||
(assoc-ref %build-inputs "openssl")))))
|
||||
(home-page "https://www.fetchmail.info/")
|
||||
(synopsis "Remote-mail retrieval and forwarding utility")
|
||||
(description
|
||||
|
|
Loading…
Reference in a new issue