From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:46578) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dzjbm-0006MN-4n for guix-patches@gnu.org; Wed, 04 Oct 2017 09:21:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dzjbi-0004IW-VU for guix-patches@gnu.org; Wed, 04 Oct 2017 09:21:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:39064) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dzjbi-0004IL-Rk for guix-patches@gnu.org; Wed, 04 Oct 2017 09:21:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dzjbi-0006IU-Li for guix-patches@gnu.org; Wed, 04 Oct 2017 09:21:02 -0400 Subject: [bug#28701] [PATCH] licenses: Add CC-BY-ND licenses. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:46430) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dzjbF-0006KX-L6 for guix-patches@gnu.org; Wed, 04 Oct 2017 09:20:39 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dzjb9-0003hq-66 for guix-patches@gnu.org; Wed, 04 Oct 2017 09:20:33 -0400 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:56183) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dzjb9-0003hj-2A for guix-patches@gnu.org; Wed, 04 Oct 2017 09:20:27 -0400 Received: from [143.121.198.228] (port=34924 helo=cog147) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1dzjb8-0007UU-Fh for guix-patches@gnu.org; Wed, 04 Oct 2017 09:20:26 -0400 From: Roel Janssen Date: Wed, 04 Oct 2017 15:20:19 +0200 Message-ID: MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 28701@debbugs.gnu.org --=-=-= Content-Type: text/plain Dear Guix, I'd like to add the CC-BY-ND licenses, but I am not sure whether these are free. So, what do you think? Thanks for your time! Kind regards, Roel Janssen --=-=-= Content-Type: text/x-diff; charset=utf-8 Content-Disposition: attachment; filename=0001-licenses-Add-CC-BY-ND-licenses.patch Content-Transfer-Encoding: 8bit >From fd064dcaeba932afb0aaa8c5cbe0f39d427adc4e Mon Sep 17 00:00:00 2001 From: Roel Janssen Date: Wed, 4 Oct 2017 10:11:29 +0200 Subject: [PATCH] licenses: Add CC-BY-ND licenses. * guix/licenses.scm (cc-by-nd2.0, cc-by-nd3.0, cc-by-nd4.0): New variable. --- guix/licenses.scm | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/guix/licenses.scm b/guix/licenses.scm index 6de611d..e781c95 100644 --- a/guix/licenses.scm +++ b/guix/licenses.scm @@ -13,6 +13,7 @@ ;;; Copyright © 2017 Petter ;;; Copyright © 2017 Marius Bakke ;;; Copyright © 2017 Arun Isaac +;;; Copyright © 2017 Roel Janssen ;;; ;;; This file is part of GNU Guix. ;;; @@ -41,6 +42,7 @@ cc0 cc-by2.0 cc-by3.0 cc-by4.0 cc-by-sa2.0 cc-by-sa3.0 cc-by-sa4.0 + cc-by-nd2.0 cc-by-nd3.0 cc-by-nd4.0 cc-sampling-plus-1.0 cddl1.0 cecill cecill-b cecill-c @@ -192,6 +194,21 @@ at URI, which may be a file:// URI pointing the package's tree." "http://creativecommons.org/licenses/by-sa/2.0/" "Creative Commons Attribution-ShareAlike 2.0 Generic")) +(define cc-by-nd4.0 + (license "CC-BY-SA 4.0" + "http://creativecommons.org/licenses/by-nd/4.0/" + "Creative Commons Attribution-NoDerivatives 4.0 International")) + +(define cc-by-nd3.0 + (license "CC-BY-SA 3.0" + "http://creativecommons.org/licenses/by-sa/3.0/" + "Creative Commons Attribution-NoDerivatives 3.0 Unported")) + +(define cc-by-nd2.0 + (license "CC-BY-SA 2.0" + "http://creativecommons.org/licenses/by-sa/2.0/" + "Creative Commons Attribution-NoDerivatives 2.0 Generic")) + (define cc-by4.0 (license "CC-BY 4.0" "http://creativecommons.org/licenses/by/4.0/" -- 2.7.4 --=-=-=--