Skip to content
Snippets Groups Projects
Unverified Commit 8b8bf88f authored by Marius Bakke's avatar Marius Bakke
Browse files

licenses: Add CC-BY 4.0.

* guix/licenses.scm (cc-by4.0): New variable.
parent a280232f
No related branches found
No related tags found
No related merge requests found
...@@ -11,6 +11,7 @@ ...@@ -11,6 +11,7 @@
;;; Copyright © 2016, 2017 ng0 <ng0@libertad.pw> ;;; Copyright © 2016, 2017 ng0 <ng0@libertad.pw>
;;; Copyright © 2017 Clément Lassieur <clement@lassieur.org> ;;; Copyright © 2017 Clément Lassieur <clement@lassieur.org>
;;; Copyright © 2017 Petter <petter@mykolab.ch> ;;; Copyright © 2017 Petter <petter@mykolab.ch>
;;; Copyright © 2017 Marius Bakke <mbakke@fastmail.com>
;;; ;;;
;;; This file is part of GNU Guix. ;;; This file is part of GNU Guix.
;;; ;;;
...@@ -37,7 +38,8 @@ (define-module (guix licenses) ...@@ -37,7 +38,8 @@ (define-module (guix licenses)
non-copyleft non-copyleft
bsd-style ;deprecated! bsd-style ;deprecated!
cc0 cc0
cc-by2.0 cc-by3.0 cc-by-sa2.0 cc-by-sa3.0 cc-by-sa4.0 cc-by2.0 cc-by3.0 cc-by4.0
cc-by-sa2.0 cc-by-sa3.0 cc-by-sa4.0
cddl1.0 cddl1.0
cecill cecill-b cecill-c cecill cecill-b cecill-c
artistic2.0 clarified-artistic artistic2.0 clarified-artistic
...@@ -181,6 +183,11 @@ (define cc-by-sa2.0 ...@@ -181,6 +183,11 @@ (define cc-by-sa2.0
"http://creativecommons.org/licenses/by-sa/2.0/" "http://creativecommons.org/licenses/by-sa/2.0/"
"Creative Commons Attribution-ShareAlike 2.0 Generic")) "Creative Commons Attribution-ShareAlike 2.0 Generic"))
(define cc-by4.0
(license "CC-BY 4.0"
"http://creativecommons.org/licenses/by/4.0/"
"Creative Commons Attribution 4.0 Unported"))
(define cc-by3.0 (define cc-by3.0
(license "CC-BY 3.0" (license "CC-BY 3.0"
"http://creativecommons.org/licenses/by/3.0/" "http://creativecommons.org/licenses/by/3.0/"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment