diff options
author | Ludovic Courtès <ludo@gnu.org> | 2016-10-26 10:18:35 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2016-10-26 10:19:18 +0200 |
commit | 19262a718e97d6ebc782c8dc7e53d04cfb5f794d (patch) | |
tree | 3a75a3a147dd91b1470f64e99a8903e86d9a0583 | |
parent | 59198f8fffe43e0afb4cbf86559675fc4239dbb0 (diff) | |
download | guix-19262a718e97d6ebc782c8dc7e53d04cfb5f794d.tar.gz guix-19262a718e97d6ebc782c8dc7e53d04cfb5f794d.zip |
gnu: opensmtpd: Fix 'license' field.
* gnu/packages/mail.scm (opensmtpd)[license]: Use LICENSE:OPENSSL, not
OPENSSL.
(opensmtpd-extras)[license]: Likewise.
-rw-r--r-- | gnu/packages/mail.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index eee7d1831f..62a3678604 100644 --- a/gnu/packages/mail.scm +++ b/gnu/packages/mail.scm @@ -1618,7 +1618,7 @@ some additional standard extensions. It allows ordinary machines to exchange e-mails with other systems speaking the SMTP protocol.") (home-page "https://www.opensmtpd.org") (license (list bsd-2 bsd-3 bsd-4 (non-copyleft "file://COPYING") - public-domain isc openssl)))) + public-domain isc license:openssl)))) (define-public opensmtpd-extras (package @@ -1681,8 +1681,8 @@ e-mails with other systems speaking the SMTP protocol.") (assoc-ref %build-inputs "python-2")) (string-append "--with-lua=" (assoc-ref %build-inputs "lua"))))) - (license (list bsd-2 bsd-3 bsd-4 non-copyleft - public-domain isc openssl)) + (license (list bsd-2 bsd-3 bsd-4 + public-domain isc license:openssl)) (synopsis "Extra tables, filters, and various other addons for OpenSMTPD") (description "This package provides extra tables, filters, and various other addons |