me
/
guix
Archived
1
0
Fork 0

gnu: imapfilter: Use G-expressions.

* gnu/packages/mail.scm (imapfilter)[arguments]:
Rewrite as G-expressions.
master
Tobias Geerinckx-Rice 2022-10-16 02:00:01 +02:00
parent 6832a4140f
commit db1265fa8f
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 8 additions and 7 deletions

View File

@ -3947,13 +3947,14 @@ PGP handling, multiple servers, and secure connections.")
(base32 "0di9gwavgyr1xkd8sfh52ldkn2lq1kdad76ww2x4y0lhimnxw7gc"))))
(build-system gnu-build-system)
(arguments
`(#:tests? #f
#:make-flags
(list (string-append "PREFIX=" (assoc-ref %outputs "out"))
(string-append "CC=" ,(cc-for-target)))
#:phases
(modify-phases %standard-phases
(delete 'configure)))) ; no configure script
(list
#:tests? #f
#:make-flags
#~(list (string-append "PREFIX=" #$output)
(string-append "CC=" #$(cc-for-target)))
#:phases
#~(modify-phases %standard-phases
(delete 'configure)))) ; no configure script
(inputs
(list lua pcre2 openssl))
(home-page "https://github.com/lefcha/imapfilter")