mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-24 11:39:46 -05:00
licenses: Add 'agpl3' and 'agpl3+'.
* guix/licenses.scm (agpl3, agpl3+): New variables.
This commit is contained in:
parent
5ace6e2fa8
commit
ef7cf2917a
1 changed files with 11 additions and 0 deletions
|
@ -21,6 +21,7 @@
|
|||
(define-module (guix licenses)
|
||||
#:use-module (srfi srfi-9)
|
||||
#:export (license? license-name license-uri license-comment
|
||||
agpl3 agpl3+
|
||||
asl2.0
|
||||
boost1.0
|
||||
bsd-2 bsd-3 bsd-4 bsd-style
|
||||
|
@ -60,6 +61,16 @@ (define-record-type <license>
|
|||
;;;
|
||||
;;; Code:
|
||||
|
||||
(define agpl3
|
||||
(license "AGPL 3"
|
||||
"https://gnu.org/licenses/agpl.html"
|
||||
"https://gnu.org/licenses/why-affero-gpl.html"))
|
||||
|
||||
(define agpl3+
|
||||
(license "AGPL 3+"
|
||||
"https://gnu.org/licenses/agpl.html"
|
||||
"https://gnu.org/licenses/why-affero-gpl.html"))
|
||||
|
||||
(define asl2.0
|
||||
(license "ASL 2.0"
|
||||
"http://directory.fsf.org/wiki/License:Apache2.0"
|
||||
|
|
Loading…
Reference in a new issue