>From 7e36409c4464bc10af90a2075f202dc22007b23c Mon Sep 17 00:00:00 2001 From: Brendan Tildesley Date: Sun, 14 May 2017 17:01:06 +1000 Subject: [PATCH 09/10] gnu: calibre: Add exhaustive license list * gnu/packages/ebook.scm (calibre): Add exhaustive license list. * gnu/packages/ebook.scm (chmlib): Use #:prefix license: instead of #:select (...) so any license can be used in ebook.scm --- gnu/packages/ebook.scm | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/gnu/packages/ebook.scm b/gnu/packages/ebook.scm index 5f3e778ad..289c2d07d 100644 --- a/gnu/packages/ebook.scm +++ b/gnu/packages/ebook.scm @@ -20,7 +20,7 @@ ;;; along with GNU Guix. If not, see . (define-module (gnu packages ebook) - #:use-module ((guix licenses) #:select (gpl3 lgpl2.1+)) + #:use-module ((guix licenses) #:prefix license:) #:use-module (guix packages) #:use-module (guix download) #:use-module (guix build-system gnu) @@ -60,7 +60,7 @@ (home-page "http://www.jedrea.com/chmlib/") (synopsis "Library for CHM files") (description "CHMLIB is a library for dealing with ITSS/CHM format files.") - (license lgpl2.1+))) + (license license:lgpl2.1+))) (define-public calibre (package @@ -165,4 +165,13 @@ and catalog ebooks in most of the major ebook formats. It can also talk to many ebook reader devices. It can go out to the Internet and fetch metadata for books. It can download newspapers and convert them into ebooks for convenient reading.") - (license gpl3))) ; some files are under various other licenses, see COPYRIGHT + (license (list license:gpl3 ; Too many files to detail here. See source. + license:gpl2+ + license:gpl2 + license:bsd-3 + license:lgpl2.1+ + license:lgpl2.1 + license:expat + license:asl2.0 + license:non-copyleft ; hyphenate license, and Info-Zip license. + license:cc-by-sa3.0)))) -- 2.13.0