licenses: Add Apple Public Source License 2.0.
* guix/licenses.scm (apsl2): New variable. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>master
parent
fd67774d27
commit
9c4aaa630d
|
@ -14,6 +14,7 @@
|
||||||
;;; Copyright © 2017 Marius Bakke <mbakke@fastmail.com>
|
;;; Copyright © 2017 Marius Bakke <mbakke@fastmail.com>
|
||||||
;;; Copyright © 2017 Arun Isaac <arunisaac@systemreboot.net>
|
;;; Copyright © 2017 Arun Isaac <arunisaac@systemreboot.net>
|
||||||
;;; Copyright © 2017 Rutger Helling <rhelling@mykolab.com>
|
;;; Copyright © 2017 Rutger Helling <rhelling@mykolab.com>
|
||||||
|
;;; Copyright © 2020 André Batista <nandre@riseup.net>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -34,6 +35,7 @@
|
||||||
#:use-module (srfi srfi-9)
|
#:use-module (srfi srfi-9)
|
||||||
#:export (license? license-name license-uri license-comment
|
#:export (license? license-name license-uri license-comment
|
||||||
agpl1 agpl3 agpl3+
|
agpl1 agpl3 agpl3+
|
||||||
|
apsl2
|
||||||
asl1.1 asl2.0
|
asl1.1 asl2.0
|
||||||
boost1.0
|
boost1.0
|
||||||
bsd-2 bsd-3 bsd-4
|
bsd-2 bsd-3 bsd-4
|
||||||
|
@ -132,6 +134,11 @@
|
||||||
"https://gnu.org/licenses/agpl.html"
|
"https://gnu.org/licenses/agpl.html"
|
||||||
"https://gnu.org/licenses/why-affero-gpl.html"))
|
"https://gnu.org/licenses/why-affero-gpl.html"))
|
||||||
|
|
||||||
|
(define apsl2
|
||||||
|
(license "APSL 2.0"
|
||||||
|
"https://directory.fsf.org/wiki/License:APSL-2.0"
|
||||||
|
"https://www.gnu.org/licenses/license-list.html#apsl2"))
|
||||||
|
|
||||||
(define asl1.1
|
(define asl1.1
|
||||||
(license "ASL 1.1"
|
(license "ASL 1.1"
|
||||||
"http://directory.fsf.org/wiki/License:Apache1.1"
|
"http://directory.fsf.org/wiki/License:Apache1.1"
|
||||||
|
|
Reference in New Issue