diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-10-16 02:00:01 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-10-16 02:00:28 +0200 |
commit | db1265fa8fb9372933dfae91120b490cf018493d (patch) | |
tree | 129ca78d498d5572271419758f879641f44e39d7 /gnu | |
parent | 6832a4140fdd1167a0d2f0270b8e651b6b70e173 (diff) |
gnu: imapfilter: Use G-expressions.
* gnu/packages/mail.scm (imapfilter)[arguments]:
Rewrite as G-expressions.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/mail.scm | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index 565ea22f32..28acfadea0 100644 --- a/gnu/packages/mail.scm +++ b/gnu/packages/mail.scm @@ -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") |