diff options
author | Ludovic Courtès <ludo@gnu.org> | 2015-09-06 12:34:03 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2015-09-06 12:36:15 +0200 |
commit | 12abc6e39548a55c2b6ba4113f9f1bde8d5d08e1 (patch) | |
tree | e4557c8c0d2af7478b537f7fa9e285c7bbdef761 | |
parent | 90f2801e2115d6f9b6e60c25e034d4d950b3e5d1 (diff) | |
download | guix-12abc6e39548a55c2b6ba4113f9f1bde8d5d08e1.tar guix-12abc6e39548a55c2b6ba4113f9f1bde8d5d08e1.tar.gz |
licenses: Add CC-BY-SA and CC-BY.
* guix/licenses.scm (cc-by-sa4.0, cc-by3.0): New variables.
-rw-r--r-- | guix/licenses.scm | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/guix/licenses.scm b/guix/licenses.scm index 024f0c294c..c3b76af9b9 100644 --- a/guix/licenses.scm +++ b/guix/licenses.scm @@ -30,6 +30,7 @@ non-copyleft bsd-style ;deprecated! cc0 + cc-by-sa4.0 cc-by3.0 cddl1.0 cecill-c artistic2.0 clarified-artistic @@ -137,6 +138,16 @@ at URI, which may be a file:// URI pointing the package's tree." "http://directory.fsf.org/wiki/License:CC0" "http://www.gnu.org/licenses/license-list.html#CC0")) +(define cc-by-sa4.0 + (license "CC-BY-SA 4.0" + "http://creativecommons.org/licenses/by-sa/4.0/" + "Creative Commons Attribution-ShareAlike 4.0 International")) + +(define cc-by3.0 + (license "CC-BY 3.0" + "http://creativecommons.org/licenses/by/3.0/" + "Creative Commons Attribution 3.0 Unported")) + (define cddl1.0 (license "CDDL 1.0" "http://directory.fsf.org/wiki/License:CDDLv1.0" |