This is an automated email from the git hooks/post-receive script.

leoprikler pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 7e16321  licenses: Add BSD-1-Clause license.
7e16321 is described below

commit 7e16321560d03d1d63df0354bb0ec1a9f21d59fa
Author: Xinglu Chen <[email protected]>
AuthorDate: Thu Jun 3 19:47:42 2021 +0200

    licenses: Add BSD-1-Clause license.
    
    * licenses.scm (bsd-1): New variable.
---
 guix/licenses.scm | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/guix/licenses.scm b/guix/licenses.scm
index 4718ccf..e745779 100644
--- a/guix/licenses.scm
+++ b/guix/licenses.scm
@@ -17,6 +17,7 @@
 ;;; Copyright © 2020 André Batista <[email protected]>
 ;;; Copyright © 2020 Helio Machado <[email protected]>
 ;;; Copyright © 2021 Felix Gruber <[email protected]>
+;;; Copyright © 2021 Xinglu Chen <[email protected]>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -40,7 +41,7 @@
             apsl2
             asl1.1 asl2.0
             boost1.0
-            bsd-0 bsd-2 bsd-3 bsd-4
+            bsd-0 bsd-1 bsd-2 bsd-3 bsd-4
             non-copyleft
             cc0
             cc-by2.0 cc-by3.0 cc-by4.0
@@ -166,6 +167,11 @@
            "https://spdx.org/licenses/0BSD.html";
            "https://opensource.org/licenses/0BSD";))
 
+(define bsd-1
+  (license "BSD 1-Clause"
+           "https://spdx.org/licenses/BSD-1-Clause.html";
+           "https://opensource.org/licenses/BSD-1-Clause";))
+
 (define bsd-2
   (license "FreeBSD"
            "http://directory.fsf.org/wiki/License:FreeBSD";

Reply via email to