mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-23 11:09:41 -05:00
gnu: librevenge, libwpd, libwpg: Fix 'license' field.
* gnu/packages/libreoffice.scm (librevenge, libwpd, libwpg): Fix 'license' field to be a list of <license>.
This commit is contained in:
parent
fe1a39d319
commit
68267c6367
1 changed files with 3 additions and 3 deletions
|
@ -113,7 +113,7 @@ (define-public librevenge
|
|||
(description "Librevenge is a base library for writing document import
|
||||
filters. It has interfaces for text documents, vector graphics,
|
||||
spreadsheets and presentations.")
|
||||
(license '(mpl2.0 lgpl2.1+)))) ; dually licensed
|
||||
(license (list mpl2.0 lgpl2.1+)))) ;dual licensed
|
||||
|
||||
(define-public libwpd
|
||||
(package
|
||||
|
@ -138,7 +138,7 @@ (define-public libwpd
|
|||
(description "Libwpd is a C++ library designed to help process
|
||||
WordPerfect documents. It is most commonly used to import such documents
|
||||
into other word processors.")
|
||||
(license '(mpl2.0 lgpl2.1+)))) ; dually licensed
|
||||
(license (list mpl2.0 lgpl2.1+)))) ;dual licensed
|
||||
|
||||
(define-public libe-book
|
||||
(package
|
||||
|
@ -198,4 +198,4 @@ (define-public libwpg
|
|||
(synopsis "Library and tools for the WordPerfect Graphics format")
|
||||
(description "The libwpg project provides a library and tools for
|
||||
working with graphics in the WPG (WordPerfect Graphics) format.")
|
||||
(license '(mpl2.0 lgpl2.1+)))) ; dually licensed
|
||||
(license (list mpl2.0 lgpl2.1+)))) ;dual licensed
|
||||
|
|
Loading…
Reference in a new issue