diff options
-rw-r--r-- | create-license.el | 13 |
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))) |