diff options
author | Eric Bavier <bavier@member.fsf.org> | 2014-06-30 11:24:29 -0500 |
---|---|---|
committer | Eric Bavier <bavier@member.fsf.org> | 2014-06-30 11:26:42 -0500 |
commit | 71639e1f17212e6f3f63a8a9b6f84ee2a4d2018e (patch) | |
tree | 00326f38f02df9a1122fa34d81dbf2cdfe45a141 | |
parent | a480bc41573275d6d9f97dc43efe7024fa1cc56b (diff) | |
download | patches-71639e1f17212e6f3f63a8a9b6f84ee2a4d2018e.tar patches-71639e1f17212e6f3f63a8a9b6f84ee2a4d2018e.tar.gz |
guix: Add CC0 license.
* guix/licenses.scm (cc0): New variable.
-rw-r--r-- | guix/licenses.scm | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/guix/licenses.scm b/guix/licenses.scm index c3464b5f5f..23e4458b09 100644 --- a/guix/licenses.scm +++ b/guix/licenses.scm @@ -25,6 +25,7 @@ asl2.0 boost1.0 bsd-2 bsd-3 bsd-4 bsd-style + cc0 cddl1.0 cecill-c cpl1.0 @@ -108,6 +109,11 @@ which may be a file:// URI pointing the package's tree." "Check the URI for details. " comment))) +(define cc0 + (license "CC0" + "http://directory.fsf.org/wiki/License:CC0" + "http://www.gnu.org/licenses/license-list.html#CC0")) + (define cddl1.0 (license "CDDL 1.0" "http://directory.fsf.org/wiki/License:CDDLv1.0" |