diff options
author | Ludovic Courtès <ludo@gnu.org> | 2014-11-19 17:37:09 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-11-19 22:07:02 +0100 |
commit | af8c2a158ee7bccc252ffdac053735b5e2413120 (patch) | |
tree | 49ab9857f320b9377330627a6a0fa932d1ff7fc1 | |
parent | 77264d1512db3659ab65f01f754d82b1e143fd50 (diff) | |
download | gnu-guix-af8c2a158ee7bccc252ffdac053735b5e2413120.tar gnu-guix-af8c2a158ee7bccc252ffdac053735b5e2413120.tar.gz |
licenses: Add the Clarified Artistic License.
* guix/licenses.scm (clarified-artistic): New variable.
-rw-r--r-- | guix/licenses.scm | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/guix/licenses.scm b/guix/licenses.scm index f22d489df7..3a21f4f5cf 100644 --- a/guix/licenses.scm +++ b/guix/licenses.scm @@ -28,6 +28,7 @@ cc0 cddl1.0 cecill-c + clarified-artistic cpl1.0 epl1.0 expat @@ -127,6 +128,12 @@ which may be a file:// URI pointing the package's tree." "http://www.cecill.info/licences/Licence_CeCILL-C_V1-en.html" "https://www.gnu.org/licenses/license-list.html#CeCILL")) +(define clarified-artistic + (license "Clarified Artistic" + ;; http://directory.fsf.org/wiki/User:Jgay/license-categorization#Clarified_Artistic_License + "http://gianluca.dellavedova.org/2011/01/03/clarified-artistic-license/" + "https://www.gnu.org/licenses/license-list.html#ArtisticLicense2")) + (define cpl1.0 (license "CPL 1.0" "http://directory.fsf.org/wiki/License:CPLv1.0" |