diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-01-12 02:09:30 +0000 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-01-11 20:17:50 +0000 |
commit | 19b9bbb611e4e182e69188fdc82f21a84bb08b28 (patch) | |
tree | 7496bd1791ea1efe48c984555a12e2d73305ea29 /gnu/packages | |
parent | 132a251dd7ac1a397caa31ceefb71c6050e0d65f (diff) | |
download | guix-19b9bbb611e4e182e69188fdc82f21a84bb08b28.tar.gz guix-19b9bbb611e4e182e69188fdc82f21a84bb08b28.zip |
gnu: getmail: Unquote arguments.
* gnu/packages/mail.scm (getmail)[arguments]: Use LIST.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/mail.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index a21796c965..a9366b3a56 100644 --- a/gnu/packages/mail.scm +++ b/gnu/packages/mail.scm @@ -1547,8 +1547,8 @@ pairs have previously synchronized.") (base32 "1yk7lrndbfsrbdxikwzdqvadryqsldalxdn3a184dg4sxzmgis3a")))) (build-system python-build-system) (arguments - `(#:tests? #f ; no tests - #:python ,python-2)) + (list #:tests? #f ; no tests + #:python python-2)) (home-page "https://pyropus.ca/software/getmail/") (synopsis "Mail retriever") (description |