licenses: Add CeCILL and CeCILL-B.

* guix/licenses.scm (cecill, cecill-b): New variables.
This commit is contained in:
Ludovic Courtès 2017-05-02 21:39:55 +02:00
parent beba0c09b9
commit 756be979cb
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 13 additions and 3 deletions

View File

@ -1,5 +1,5 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2012, 2014, 2015 Ludovic Courtès <ludo@gnu.org>
;;; Copyright © 2012, 2014, 2015, 2017 Ludovic Courtès <ludo@gnu.org>
;;; Copyright © 2013, 2015 Andreas Enge <andreas@enge.fr>
;;; Copyright © 2012, 2013 Nikita Karetnikov <nikita@karetnikov.org>
;;; Copyright © 2015 Mark H Weaver <mhw@netris.org>
@ -38,7 +38,7 @@
cc0
cc-by2.0 cc-by3.0 cc-by-sa2.0 cc-by-sa3.0 cc-by-sa4.0
cddl1.0
cecill-c
cecill cecill-b cecill-c
artistic2.0 clarified-artistic
copyleft-next
cpl1.0
@ -193,7 +193,17 @@ at URI, which may be a file:// URI pointing the package's tree."
"http://directory.fsf.org/wiki/License:CDDLv1.0"
"https://www.gnu.org/licenses/license-list#CDDL"))
(define cecill-c
(define cecill ;copyleft
(license "CeCILL"
"http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.html"
"https://www.gnu.org/licenses/license-list.html#CeCILL"))
(define cecill-b ;non-copyleft
(license "CeCILL-B"
"http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html"
"https://www.gnu.org/licenses/license-list.html#CeCILL"))
(define cecill-c ;weak copyleft
(license "CeCILL-C"
"http://www.cecill.info/licences/Licence_CeCILL-C_V1-en.html"
"https://www.gnu.org/licenses/license-list.html#CeCILL"))