diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2015-12-26 11:29:14 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2015-12-30 20:41:33 +0100 |
commit | b7fa2f9321df57a7154ac9d443d8c51e33f31f2e (patch) | |
tree | 6b5394737d37d0dd4bbd10efdf1dc291b7a7a3de /guix/licenses.scm | |
parent | 0084aaf3d4a959c0ea33ed617784590ec3b45e9a (diff) | |
download | gnu-guix-b7fa2f9321df57a7154ac9d443d8c51e33f31f2e.tar gnu-guix-b7fa2f9321df57a7154ac9d443d8c51e33f31f2e.tar.gz |
licenses: Add CC BY SA 3.0.
* guix/licenses.scm (cc-by-sa3.0): New variable.
Diffstat (limited to 'guix/licenses.scm')
-rw-r--r-- | guix/licenses.scm | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/guix/licenses.scm b/guix/licenses.scm index 7e05b32993..9ace7f543b 100644 --- a/guix/licenses.scm +++ b/guix/licenses.scm @@ -30,7 +30,7 @@ non-copyleft bsd-style ;deprecated! cc0 - cc-by-sa4.0 cc-by3.0 + cc-by-sa4.0 cc-by-sa3.0 cc-by3.0 cddl1.0 cecill-c artistic2.0 clarified-artistic @@ -144,6 +144,11 @@ at URI, which may be a file:// URI pointing the package's tree." "http://creativecommons.org/licenses/by-sa/4.0/" "Creative Commons Attribution-ShareAlike 4.0 International")) +(define cc-by-sa3.0 + (license "CC-BY-SA 3.0" + "http://creativecommons.org/licenses/by-sa/3.0/" + "Creative Commons Attribution-ShareAlike 3.0 Unported")) + (define cc-by3.0 (license "CC-BY 3.0" "http://creativecommons.org/licenses/by/3.0/" |