gnu: python-pyfakefs: Update to 3.7.1.
[jackhill/guix/guix.git] / guix / licenses.scm
CommitLineData
233e7676 1;;; GNU Guix --- Functional package management for GNU
b227457f 2;;; Copyright © 2012, 2014, 2015, 2017, 2019 Ludovic Courtès <ludo@gnu.org>
6d5e7ef3 3;;; Copyright © 2013, 2015 Andreas Enge <andreas@enge.fr>
e2034de5 4;;; Copyright © 2012, 2013 Nikita Karetnikov <nikita@karetnikov.org>
e5c35d9a 5;;; Copyright © 2015 Mark H Weaver <mhw@netris.org>
da945758 6;;; Copyright © 2015, 2019 Ricardo Wurmus <rekado@elephly.net>
ea4a0e81 7;;; Copyright © 2016 Eric Bavier <bavier@member.fsf.org>
aaa49e8c 8;;; Copyright © 2016 Leo Famulari <leo@famulari.name>
ca9eb489 9;;; Copyright © 2016 Fabian Harfert <fhmgufs@web.de>
a10bf139 10;;; Copyright © 2016 Rene Saavedra <rennes@openmailbox.org>
47956fa0 11;;; Copyright © 2016, 2017 ng0 <ng0@n0.is>
33143961 12;;; Copyright © 2017 Clément Lassieur <clement@lassieur.org>
2f3108ad 13;;; Copyright © 2017 Petter <petter@mykolab.ch>
8b8bf88f 14;;; Copyright © 2017 Marius Bakke <mbakke@fastmail.com>
41209a6f 15;;; Copyright © 2017 Arun Isaac <arunisaac@systemreboot.net>
00cf98eb 16;;; Copyright © 2017 Rutger Helling <rhelling@mykolab.com>
838d78e3 17;;;
233e7676 18;;; This file is part of GNU Guix.
838d78e3 19;;;
233e7676 20;;; GNU Guix is free software; you can redistribute it and/or modify it
838d78e3
NK
21;;; under the terms of the GNU General Public License as published by
22;;; the Free Software Foundation; either version 3 of the License, or (at
23;;; your option) any later version.
24;;;
233e7676 25;;; GNU Guix is distributed in the hope that it will be useful, but
838d78e3
NK
26;;; WITHOUT ANY WARRANTY; without even the implied warranty of
27;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
28;;; GNU General Public License for more details.
29;;;
30;;; You should have received a copy of the GNU General Public License
233e7676 31;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
838d78e3
NK
32
33(define-module (guix licenses)
34 #:use-module (srfi srfi-9)
35 #:export (license? license-name license-uri license-comment
59b20347 36 agpl1 agpl3 agpl3+
f88ce395 37 asl1.1 asl2.0
838d78e3 38 boost1.0
b3345dc4
LC
39 bsd-2 bsd-3 bsd-4
40 non-copyleft
71639e1f 41 cc0
8b8bf88f
MB
42 cc-by2.0 cc-by3.0 cc-by4.0
43 cc-by-sa2.0 cc-by-sa3.0 cc-by-sa4.0
2374dee7 44 cc-sampling-plus-1.0
965ba54b 45 cddl1.0 cddl1.1
756be979 46 cecill cecill-b cecill-c
f8e36623 47 artistic2.0 clarified-artistic
0eed5501 48 copyleft-next
838d78e3 49 cpl1.0
095494ed 50 edl1.0
838d78e3 51 epl1.0
8057c9e9 52 epl2.0
f15b31c5 53 expat
b387a1c5 54 freetype
7e67fdd1 55 freebsd-doc
921d9dc7 56 giftware
f15b31c5 57 gpl1 gpl1+ gpl2 gpl2+ gpl3 gpl3+
dee38b7b 58 gfl1.0
b58691fa 59 fdl1.1+ fdl1.2+ fdl1.3+
c058f4ec 60 opl1.0+
b1426f17 61 isc
838d78e3
NK
62 ijg
63 ibmpl1.0
8835aed4 64 imlib2
6d5e7ef3 65 ipa
942c4f81 66 knuth
cd0a9c91 67 lgpl2.0 lgpl2.0+ lgpl2.1 lgpl2.1+ lgpl3 lgpl3+ llgpl
da945758 68 lppl lppl1.0+ lppl1.1+ lppl1.2 lppl1.2+
942c4f81
RW
69 lppl1.3 lppl1.3+
70 lppl1.3a lppl1.3a+
71 lppl1.3b lppl1.3b+
72 lppl1.3c lppl1.3c+
41209a6f 73 miros
ea4a0e81 74 mpl1.0 mpl1.1 mpl2.0
fdbb9ded 75 ms-pl
499cdcc6 76 ncsa
dcd19c0a 77 nmap
1ca98280 78 openldap2.8 openssl
2f3108ad 79 perl-license
e2034de5 80 psfl public-domain
d192efae 81 qpl
0db71dd2 82 repoze
6ef8c59a 83 ruby
e5c35d9a 84 sgifreeb2.0
d9e56454 85 silofl1.1
2824146b 86 sleepycat
d29f6470 87 tcl/tk
aaa49e8c 88 unlicense
99e6c1b1 89 vim
0a574d7b 90 w3c
bbd60260 91 x11 x11-style
4a4dac20 92 zpl2.1
6d36a6f3 93 zlib
d8c8e423 94 fsf-free
33143961 95 wtfpl2
00cf98eb 96 wxwindows3.1+
78407a27 97 hpnd
33143961 98 fsdg-compatible))
838d78e3
NK
99
100(define-record-type <license>
101 (license name uri comment)
102 license?
103 (name license-name)
104 (uri license-uri)
105 (comment license-comment))
106
107;;; Commentary:
108;;;
109;;; Available licenses.
110;;;
111;;; This list is based on these links:
ca534666 112;;; https://github.com/NixOS/nixpkgs/blob/master/lib/licenses.nix
838d78e3
NK
113;;; https://www.gnu.org/licenses/license-list
114;;;
115;;; Code:
116
59b20347
DC
117(define agpl1
118 (license "AGPL 1"
119 "https://gnu.org/licenses/agpl.html"
120 "https://gnu.org/licenses/why-affero-gpl.html"))
121
ef7cf291
NK
122(define agpl3
123 (license "AGPL 3"
124 "https://gnu.org/licenses/agpl.html"
125 "https://gnu.org/licenses/why-affero-gpl.html"))
126
127(define agpl3+
128 (license "AGPL 3+"
129 "https://gnu.org/licenses/agpl.html"
130 "https://gnu.org/licenses/why-affero-gpl.html"))
131
f88ce395
RJ
132(define asl1.1
133 (license "ASL 1.1"
134 "http://directory.fsf.org/wiki/License:Apache1.1"
135 "https://www.gnu.org/licenses/license-list#apache1"))
136
838d78e3
NK
137(define asl2.0
138 (license "ASL 2.0"
139 "http://directory.fsf.org/wiki/License:Apache2.0"
140 "https://www.gnu.org/licenses/license-list#apache2"))
141
142(define boost1.0
143 (license "Boost 1.0"
144 "http://directory.fsf.org/wiki/License:Boost1.0"
145 "https://www.gnu.org/licenses/license-list#boost"))
146
147(define bsd-2
148 (license "FreeBSD"
149 "http://directory.fsf.org/wiki/License:FreeBSD"
150 "https://www.gnu.org/licenses/license-list#FreeBSD"))
151
152(define bsd-3
153 (license "Modified BSD"
154 "http://directory.fsf.org/wiki/License:BSD_3Clause"
155 "https://www.gnu.org/licenses/license-list#ModifiedBSD"))
156
157(define bsd-4
158 (license "Original BSD"
159 "http://directory.fsf.org/wiki/License:BSD_4Clause"
160 "https://www.gnu.org/licenses/license-list#OriginalBSD"))
161
b3345dc4
LC
162(define* (non-copyleft uri #:optional (comment ""))
163 "Return a lax, permissive, non-copyleft license (for example a variant of
164the 3-clause BSD license or the Expat license), whose full text can be found
165at URI, which may be a file:// URI pointing the package's tree."
166 (license "non-copyleft"
f15b31c5
NK
167 uri
168 (string-append
b3345dc4 169 "This is a lax, non-copyleft free software license. "
f15b31c5
NK
170 "Check the URI for details. "
171 comment)))
172
71639e1f
EB
173(define cc0
174 (license "CC0"
175 "http://directory.fsf.org/wiki/License:CC0"
176 "http://www.gnu.org/licenses/license-list.html#CC0"))
177
12abc6e3
LC
178(define cc-by-sa4.0
179 (license "CC-BY-SA 4.0"
180 "http://creativecommons.org/licenses/by-sa/4.0/"
181 "Creative Commons Attribution-ShareAlike 4.0 International"))
182
b7fa2f93
RW
183(define cc-by-sa3.0
184 (license "CC-BY-SA 3.0"
185 "http://creativecommons.org/licenses/by-sa/3.0/"
186 "Creative Commons Attribution-ShareAlike 3.0 Unported"))
187
a10bf139
RS
188(define cc-by-sa2.0
189 (license "CC-BY-SA 2.0"
190 "http://creativecommons.org/licenses/by-sa/2.0/"
191 "Creative Commons Attribution-ShareAlike 2.0 Generic"))
192
8b8bf88f
MB
193(define cc-by4.0
194 (license "CC-BY 4.0"
195 "http://creativecommons.org/licenses/by/4.0/"
196 "Creative Commons Attribution 4.0 Unported"))
197
12abc6e3
LC
198(define cc-by3.0
199 (license "CC-BY 3.0"
200 "http://creativecommons.org/licenses/by/3.0/"
201 "Creative Commons Attribution 3.0 Unported"))
202
a10bf139
RS
203(define cc-by2.0
204 (license "CC-BY 2.0"
205 "http://creativecommons.org/licenses/by/2.0/"
206 "Creative Commons Attribution 2.0 Generic"))
207
2374dee7
AI
208(define cc-sampling-plus-1.0
209 (license "CC-Sampling+ 1.0"
210 "https://creativecommons.org/licenses/sampling+/1.0"
211 "Creative Commons Sampling Plus 1.0"))
212
838d78e3
NK
213(define cddl1.0
214 (license "CDDL 1.0"
215 "http://directory.fsf.org/wiki/License:CDDLv1.0"
216 "https://www.gnu.org/licenses/license-list#CDDL"))
217
965ba54b
JL
218;; CDDL1.1 is the same as 1.0, except that "Sun Microsystems, Inc" becomes "Oracle",
219;; "LOST PROFITS" becoms "LOSS OF GOODWILL" and a section is added between 6.2
220;; and 6.3.
221(define cddl1.1
222 (license "CDDL 1.1"
223 "https://oss.oracle.com/licenses/CDDL+GPL-1.1"
224 "https://www.gnu.org/licenses/license-list#CDDL"))
225
756be979
LC
226(define cecill ;copyleft
227 (license "CeCILL"
228 "http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.html"
229 "https://www.gnu.org/licenses/license-list.html#CeCILL"))
230
231(define cecill-b ;non-copyleft
232 (license "CeCILL-B"
233 "http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html"
234 "https://www.gnu.org/licenses/license-list.html#CeCILL"))
235
236(define cecill-c ;weak copyleft
c711f07c
EB
237 (license "CeCILL-C"
238 "http://www.cecill.info/licences/Licence_CeCILL-C_V1-en.html"
239 "https://www.gnu.org/licenses/license-list.html#CeCILL"))
240
f8e36623
EB
241(define artistic2.0
242 (license "Artistic License 2.0"
243 "http://www.perlfoundation.org/artistic_license_2_0"
244 "http://www.gnu.org/licenses/license-list.html#ArtisticLicense2"))
245
af8c2a15
LC
246(define clarified-artistic
247 (license "Clarified Artistic"
248 ;; http://directory.fsf.org/wiki/User:Jgay/license-categorization#Clarified_Artistic_License
249 "http://gianluca.dellavedova.org/2011/01/03/clarified-artistic-license/"
250 "https://www.gnu.org/licenses/license-list.html#ArtisticLicense2"))
251
0eed5501
LC
252(define copyleft-next
253 (license "copyleft-next"
254 "https://raw.github.com/richardfontana/copyleft-next/master/Releases/copyleft-next-0.3.0"
255 "GPL-compatible copyleft license"))
256
838d78e3
NK
257(define cpl1.0
258 (license "CPL 1.0"
259 "http://directory.fsf.org/wiki/License:CPLv1.0"
260 "https://www.gnu.org/licenses/license-list#CommonPublicLicense10"))
261
095494ed
RW
262(define edl1.0
263 (license "EDL 1.0"
264 "http://directory.fsf.org/wiki/License:EDLv1.0"
265 "https://eclipse.org/org/documents/edl-v10.php"))
266
838d78e3
NK
267(define epl1.0
268 (license "EPL 1.0"
269 "http://directory.fsf.org/wiki/License:EPLv1.0"
270 "https://www.gnu.org/licenses/license-list#EPL"))
271
8057c9e9
RW
272(define epl2.0
273 (license "EPL 2.0"
274 "https://www.eclipse.org/legal/epl-2.0/"
275 "https://www.gnu.org/licenses/license-list#EPL2"))
276
f15b31c5
NK
277(define expat
278 (license "Expat"
279 "http://directory.fsf.org/wiki/License:Expat"
280 "https://www.gnu.org/licenses/license-list.html#Expat"))
281
b387a1c5
AE
282(define freetype
283 (license "Freetype"
284 "http://directory.fsf.org/wiki/License:Freetype"
285 "https://www.gnu.org/licenses/license-list.html#freetype"))
286
921d9dc7
DT
287(define giftware
288 (license "Giftware"
4968ea2c 289 "https://liballeg.org/license.html"
921d9dc7
DT
290 "The Allegro 4 license"))
291
f15b31c5
NK
292(define gpl1
293 (license "GPL 1"
294 "https://www.gnu.org/licenses/old-licenses/gpl-1.0.html"
295 #f))
296
297(define gpl1+
298 (license "GPL 1+"
299 "https://www.gnu.org/licenses/old-licenses/gpl-1.0.html"
300 #f))
301
838d78e3
NK
302(define gpl2
303 (license "GPL 2"
304 "https://www.gnu.org/licenses/old-licenses/gpl-2.0.html"
305 "https://www.gnu.org/licenses/license-list#GPLv2"))
306
307(define gpl2+
308 (license "GPL 2+"
309 "https://www.gnu.org/licenses/old-licenses/gpl-2.0.html"
310 "https://www.gnu.org/licenses/license-list#GPLv2"))
311
312(define gpl3
313 (license "GPL 3"
314 "https://www.gnu.org/licenses/gpl.html"
315 "https://www.gnu.org/licenses/license-list#GNUGPLv3"))
316
317(define gpl3+
318 (license "GPL 3+"
319 "https://www.gnu.org/licenses/gpl.html"
320 "https://www.gnu.org/licenses/license-list#GNUGPLv3"))
321
dee38b7b
RW
322;; The “GUST font license” is legally equivalent to LPPL v1.3c as it only
323;; extends the LPPL with an optional request.
324(define gfl1.0
325 (license "GUST font license 1.0"
326 "http://www.gust.org.pl/projects/e-foundry/licenses/GUST-FONT-LICENSE.txt"
327 "https://www.gnu.org/licenses/license-list#LPPL-1.3a"))
328
ca9eb489
FH
329(define fdl1.1+
330 (license "FDL 1.1+"
331 "https://www.gnu.org/licenses/fdl-1.1"
332 "https://www.gnu.org/licenses/license-list#FDL"))
333
59b20347
DC
334(define fdl1.2+
335 (license "FDL 1.2+"
336 "https://www.gnu.org/licenses/fdl-1.2"
337 "https://www.gnu.org/licenses/license-list#FDL"))
338
66ea6713
LC
339(define fdl1.3+
340 (license "FDL 1.3+"
341 "https://www.gnu.org/licenses/fdl.html"
342 "https://www.gnu.org/licenses/license-list#FDL"))
343
7e67fdd1 344(define freebsd-doc
345 (license "FreeBSD Documentation License"
346 "https://www.freebsd.org/copyright/freebsd-doc-license.html"
347 "https://www.gnu.org/licenses/license-list.html#FreeBSDDL"))
348
c058f4ec
MW
349(define opl1.0+
350 (license "Open Publication License 1.0 or later"
351 "http://opencontent.org/openpub/"
352 "https://www.gnu.org/licenses/license-list#OpenPublicationL"))
353
b1426f17
CR
354(define isc
355 (license "ISC"
356 "http://directory.fsf.org/wiki/License:ISC"
357 "https://www.gnu.org/licenses/license-list.html#ISC"))
358
838d78e3
NK
359(define ijg
360 (license "IJG"
361 "http://directory.fsf.org/wiki/License:JPEG"
362 "https://www.gnu.org/licenses/license-list#ijg"))
363
364(define ibmpl1.0
365 (license "IBMPL 1.0"
366 "http://directory.fsf.org/wiki/License:IBMPLv1.0"
367 "https://www.gnu.org/licenses/license-list#IBMPL"))
368
8835aed4
AK
369(define imlib2
370 (license "Imlib2"
371 "http://directory.fsf.org/wiki/License:Imlib2"
372 "https://www.gnu.org/licenses/license-list#imlib"))
373
6d5e7ef3
AE
374(define ipa
375 (license "IPA Font License"
376 "http://directory.fsf.org/wiki/License:IPA_Font_License"
377 "https://www.gnu.org/licenses/license-list#IPAFONT"))
378
942c4f81
RW
379(define knuth
380 (license "Donald Knuth's license for TeX"
381 "http://www.ctan.org/license/knuth"
382 "Modification are only permitted under a different name."))
383
f15b31c5
NK
384(define lgpl2.0
385 (license "LGPL 2.0"
386 "https://www.gnu.org/licenses/old-licenses/lgpl-2.0.html"
387 "https://www.gnu.org/licenses/why-not-lgpl.html"))
388
389(define lgpl2.0+
390 (license "LGPL 2.0+"
391 "https://www.gnu.org/licenses/old-licenses/lgpl-2.0.html"
392 "https://www.gnu.org/licenses/why-not-lgpl.html"))
393
838d78e3
NK
394(define lgpl2.1
395 (license "LGPL 2.1"
396 "https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html"
397 "https://www.gnu.org/licenses/license-list#LGPLv2.1"))
398
399(define lgpl2.1+
400 (license "LGPL 2.1+"
401 "https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html"
402 "https://www.gnu.org/licenses/license-list#LGPLv2.1"))
403
404(define lgpl3
405 (license "LGPL 3"
406 "https://www.gnu.org/licenses/lgpl.html"
407 "https://www.gnu.org/licenses/license-list#LGPLv3"))
408
409(define lgpl3+
410 (license "LGPL 3+"
411 "https://www.gnu.org/licenses/lgpl.html"
412 "https://www.gnu.org/licenses/license-list#LGPLv3"))
413
cd0a9c91
KCB
414(define llgpl
415 (license "LLGPL"
416 "https://opensource.franz.com/preamble.html"
417 "Lisp Lesser General Public License"))
418
942c4f81
RW
419(define lppl
420 (license "LPPL (any version)"
421 "https://www.latex-project.org/lppl/lppl-1-0/"
422 "LaTeX Project Public License 1.0"))
423
424(define lppl1.0+
425 (license "LPPL 1.0+"
426 "https://www.latex-project.org/lppl/lppl-1-0/"
427 "LaTeX Project Public License 1.0"))
428
da945758
RW
429(define lppl1.1+
430 (license "LPPL 1.1+"
431 "https://www.latex-project.org/lppl/lppl-1-1/"
432 "LaTeX Project Public License 1.1"))
433
942c4f81
RW
434(define lppl1.2
435 (license "LPPL 1.2"
436 "http://directory.fsf.org/wiki/License:LPPLv1.2"
437 "https://www.gnu.org/licenses/license-list#LPPL-1.2"))
438
439(define lppl1.2+
440 (license "LPPL 1.2+"
441 "http://directory.fsf.org/wiki/License:LPPLv1.2"
442 "https://www.gnu.org/licenses/license-list#LPPL-1.2"))
443
444(define lppl1.3
445 (license "LPPL 1.3"
446 "https://www.latex-project.org/lppl/lppl-1-3/"
447 "LaTeX Project Public License 1.3"))
448
449(define lppl1.3+
450 (license "LPPL 1.3+"
451 "https://www.latex-project.org/lppl/lppl-1-3/"
452 "LaTeX Project Public License 1.3+"))
453
454(define lppl1.3a
455 (license "LPPL 1.3a"
456 "http://directory.fsf.org/wiki/License:LPPLv1.3a"
457 "https://www.gnu.org/licenses/license-list#LPPL-1.3a"))
458
459(define lppl1.3a+
460 (license "LPPL 1.3a+"
461 "http://directory.fsf.org/wiki/License:LPPLv1.3a"
462 "https://www.gnu.org/licenses/license-list#LPPL-1.3a"))
463
464(define lppl1.3b
465 (license "LPPL 1.3b"
466 "https://www.latex-project.org/lppl/lppl-1-3b/"
467 "LaTeX Project Public License 1.3b"))
468
469(define lppl1.3b+
470 (license "LPPL 1.3b+"
471 "https://www.latex-project.org/lppl/lppl-1-3b/"
472 "LaTeX Project Public License 1.3b or later"))
473
474(define lppl1.3c
475 (license "LPPL 1.3c"
476 "https://www.latex-project.org/lppl/lppl-1-3c/"
477 "LaTeX Project Public License 1.3c"))
478
479(define lppl1.3c+
480 (license "LPPL 1.3c+"
481 "https://www.latex-project.org/lppl/lppl-1-3c/"
482 "LaTeX Project Public License 1.3c or later"))
483
41209a6f
AI
484(define miros
485 (license "MirOS"
486 "https://www.mirbsd.org/MirOS-Licence.htm"
487 "MirOS License"))
488
ea4a0e81
EB
489(define mpl1.0
490 (license "MPL 1.0"
491 "http://www.mozilla.org/MPL/1.0/"
492 "https://www.gnu.org/licenses/license-list.html#MPL"))
493
0ae332d3
LC
494(define mpl1.1
495 (license "MPL 1.1"
496 "http://directory.fsf.org/wiki/License:MPLv1.1"
497 "https://www.gnu.org/licenses/license-list#MPL"))
498
838d78e3
NK
499(define mpl2.0
500 (license "MPL 2.0"
501 "http://directory.fsf.org/wiki/License:MPLv2.0"
502 "https://www.gnu.org/licenses/license-list#MPL-2.0"))
503
fdbb9ded
LC
504(define ms-pl
505 (license "Ms-PL" ;Microsoft Public License
506 "http://directory.fsf.org/wiki/License:MsPL"
507 "http://www.gnu.org/licenses/license-list.html#ms-pl"))
508
499cdcc6
EB
509(define ncsa
510 (license "NCSA/University of Illinois Open Source License"
511 "http://directory.fsf.org/wiki/License:IllinoisNCSA"
512 "https://www.gnu.org/licenses/license-list#NCSA"))
513
dcd19c0a
LF
514(define nmap
515 (license "Nmap license"
516 "https://svn.nmap.org/nmap/COPYING"
517 "https://fedoraproject.org/wiki/Licensing/Nmap"))
518
838d78e3
NK
519(define openssl
520 (license "OpenSSL"
521 "http://directory.fsf.org/wiki/License:OpenSSL"
522 "https://www.gnu.org/licenses/license-list#OpenSSL"))
523
1ca98280
AE
524(define openldap2.8
525 (license "OpenLDAPv2.8"
526 "http://directory.fsf.org/wiki/License:OpenLDAPv2.8"
527 "https://www.gnu.org/licenses/license-list#newOpenLDAP"))
528 ;; lists OpenLDAPv2.7, which is virtually identical
529
2f3108ad
P
530(define perl-license
531 ;; The license of Perl, GPLv1+ or Artistic (we ignore the latter here).
532 ;; We define this alias to avoid circular dependencies introduced by the use
533 ;; of the '(package-license perl)' idiom.
534 gpl1+)
535
e2034de5
NK
536(define psfl
537 (license "Python Software Foundation License"
538 "http://docs.python.org/license.html"
539 #f))
540
838d78e3
NK
541(define public-domain
542 (license "Public Domain"
543 "http://directory.fsf.org/wiki/License:PublicDomain"
544 "https://www.gnu.org/licenses/license-list#PublicDomain"))
545
d192efae
CR
546(define qpl
547 (license "QPL"
548 "http://directory.fsf.org/wiki/License:QPLv1.0"
549 "http://www.gnu.org/licenses/license-list.html#QPL"))
550
0db71dd2
LF
551(define repoze
552 (license "Repoze"
553 "http://repoze.org/LICENSE.txt"
554 "A BSD-like license with a clause requiring all changes to be
555 attributed by author and date."))
556
6ef8c59a
PP
557(define ruby
558 (license "Ruby License"
559 "http://directory.fsf.org/wiki/License:Ruby"
560 "https://www.ruby-lang.org/en/about/license.txt"))
561
e5c35d9a
MW
562(define sgifreeb2.0
563 (license "SGI Free Software License B, version 2.0"
564 "http://directory.fsf.org/wiki/License:SGIFreeBv2"
565 "https://www.gnu.org/licenses/license-list.html#SGIFreeB"))
566
d9e56454
AK
567(define silofl1.1
568 (license "SIL OFL 1.1"
569 "http://scripts.sil.org/OFL_web"
570 "https://www.gnu.org/licenses/license-list#SILOFL"))
571
2824146b
RW
572(define sleepycat
573 (license "Sleepycat"
574 "http://directory.fsf.org/wiki/License:Sleepycat"
575 "https://www.gnu.org/licenses/license-list#BerkeleyDB"))
576
d29f6470
JN
577(define tcl/tk
578 (license "Tcl/Tk"
579 "http://www.tcl.tk/software/tcltk/license.html"
580 "A non-copyleft free software license from the Tcl/Tk project"))
581
99e6c1b1
AE
582(define vim
583 (license "Vim"
584 "http://directory.fsf.org/wiki/License:Vim7.2"
585 "http://www.gnu.org/licenses/license-list.html#Vim"))
586
aaa49e8c
LF
587(define unlicense
588 (license "Unlicense"
589 "https://unlicense.org/"
590 "https://www.gnu.org/licenses/license-list.html#Unlicense"))
591
0a574d7b
BH
592(define w3c
593 (license "W3C Software Notice and License"
594 "https://directory.fsf.org/wiki/License:W3C_31Dec2002"
595 "https://www.gnu.org/licenses/license-list.en.html#W3C"))
596
d8c8e423 597(define wtfpl2
598 (license "WTFPL 2"
599 "http://www.wtfpl.net"
600 "http://www.wtfpl.net/about/"))
601
00cf98eb
RH
602(define wxwindows3.1+
603 (license "wxWindows 3.1+"
604 "https://wxwidgets.org/about/licence"
605 "https://www.gnu.org/licenses/license-list.html#Wxwind"))
606
838d78e3
NK
607(define x11
608 (license "X11"
609 "http://directory.fsf.org/wiki/License:X11"
610 "https://www.gnu.org/licenses/license-list#X11License"))
611
bbd60260
NK
612(define* (x11-style uri #:optional (comment ""))
613 "Return an X11-style license, whose full text can be found at URI,
614which may be a file:// URI pointing the package's tree."
615 (license "X11-style"
616 uri
617 (string-append
618 "This is an X11-style, non-copyleft free software license. "
619 "Check the URI for details. "
620 comment)))
621
4a4dac20
RW
622(define zpl2.1
623 (license "Zope Public License 2.1"
624 "http://directory.fsf.org/wiki?title=License:ZopePLv2.1"
625 "https://www.gnu.org/licenses/license-list.html#Zope2.0"))
626
838d78e3
NK
627(define zlib
628 (license "Zlib"
629 "http://www.gzip.org/zlib/zlib_license.html"
630 "https://www.gnu.org/licenses/license-list#ZLib"))
631
78407a27
GB
632(define hpnd
633 (license "HPND"
634 "https://directory.fsf.org/wiki/License:HPND"
635 "https://www.gnu.org/licenses/license-list#HPND"))
636
6d36a6f3
AE
637(define* (fsf-free uri #:optional (comment ""))
638 "Return a license that does not fit any of the ones above or a collection
639of licenses, approved as free by the FSF. More details can be found at URI."
640 (license "FSF-free"
641 uri
642 comment))
643
33143961
CL
644(define* (fsdg-compatible uri #:optional (comment ""))
645 "Return a license that does not fit any of the ones above or a collection
646of licenses, not necessarily free, but in accordance with FSDG as Non-functional
647Data. More details can be found at URI. See also
648https://www.gnu.org/distros/free-system-distribution-guidelines.en.html#non-functional-data."
649 (license "FSDG-compatible"
650 uri
651 comment))
652
838d78e3 653;;; licenses.scm ends here