summary refs log tree commit diff
diff options
context:
space:
mode:
authorNikita Karetnikov <nikita@karetnikov.org>2013-05-14 18:57:42 +0000
committerNikita Karetnikov <nikita@karetnikov.org>2013-06-03 11:39:38 +0000
commitef7cf2917abf08858002bc48664cd62f7f91d749 (patch)
tree58ad955dc50629ca836b9678ec870a5f25032c09
parent5ace6e2fa8b6bc915677643ac1477e1b86254bbc (diff)
downloadguix-ef7cf2917abf08858002bc48664cd62f7f91d749.tar.gz
licenses: Add 'agpl3' and 'agpl3+'.
* guix/licenses.scm (agpl3, agpl3+): New variables.
-rw-r--r--guix/licenses.scm11
1 files changed, 11 insertions, 0 deletions
diff --git a/guix/licenses.scm b/guix/licenses.scm
index 9c4e17737a..c0a0e60b36 100644
--- a/guix/licenses.scm
+++ b/guix/licenses.scm
@@ -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 @@
 ;;;
 ;;; 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"