aboutsummaryrefslogtreecommitdiff
path: root/create-license.el
diff options
context:
space:
mode:
authorTristan Riehs <tristan.riehs@bordeaux-inp.fr>2024-03-12 20:01:08 +0100
committerTristan Riehs <tristan.riehs@bordeaux-inp.fr>2024-03-12 20:01:08 +0100
commitcf52dd3aaf618c7c45f32781d0f224125d9f0acf (patch)
treedcd359c45aeb2057bd413f3ecd75fe51033a0189 /create-license.el
parentbb25c3809e0beae255b741e9061e8826cffb792c (diff)
Add a couple defaut common licenses
Diffstat (limited to 'create-license.el')
-rw-r--r--create-license.el13
1 files changed, 8 insertions, 5 deletions
diff --git a/create-license.el b/create-license.el
index 456d1ae..e64f200 100644
--- a/create-license.el
+++ b/create-license.el
@@ -63,13 +63,16 @@ The destination file name under DIR is given by
(expand-file-name create-license-file-name dir)))
(defcustom create-license-common
- '(("GPL-3.0" . "https://www.gnu.org/licenses/gpl-3.0.txt")
- ("GPL-2.0" . "https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt")
- ("Apache-2.0" . "https://www.apache.org/licenses/LICENSE-2.0.txt"))
+ '(("GPL3" . "https://www.gnu.org/licenses/gpl-3.0.txt")
+ ("GPL2" . "https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt")
+ ("Apache2" . "https://www.apache.org/licenses/LICENSE-2.0.txt")
+ ("MPL2" . "https://www.mozilla.org/media/MPL/2.0/index.f75d2927d3c1.txt")
+ ("CC-BY" . "https://creativecommons.org/licenses/by/4.0/legalcode.txt")
+ ("CC-BY-SA" . "https://creativecommons.org/licenses/by-sa/4.0/legalcode.txt")
+ ("FDL" . "https://www.gnu.org/licenses/fdl-1.3.txt"))
"Common known licenses.
-Each member of this list is of the form (NAME . URL). Whenever possible,
-the NAME is the SPDX identifier of the license."
+Each member of this list is of the form (NAME . URL)."
:group 'create-license
:type '(list (string . string)))