guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

15/17: gnu: libunwind: Fix license.


From: guix-commits
Subject: 15/17: gnu: libunwind: Fix license.
Date: Wed, 3 Aug 2022 11:44:36 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit bce64b41804432aea96ceb3e49b8b53de58a2d90
Author: Philip McGrath <philip@philipmcgrath.com>
AuthorDate: Mon Aug 1 06:55:14 2022 -0400

    gnu: libunwind: Fix license.
    
    The license of libunwind is Expat, not X11:
    see <https://github.com/libunwind/libunwind/issues/372>.
    
    * gnu/packages/libunwind.scm (libunwind)[license]: Fix it.
    
    Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
 gnu/packages/libunwind.scm | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/libunwind.scm b/gnu/packages/libunwind.scm
index 9eaf26fca8..03412edd25 100644
--- a/gnu/packages/libunwind.scm
+++ b/gnu/packages/libunwind.scm
@@ -52,4 +52,6 @@ state of each call-frame and to resume execution at any point 
in the
 call-chain (non-local goto).  The API supports both local (same-process) and
 remote (across-process) operation.  As such, the API is useful in a number of
 applications.")
-    (license x11)))
+    ;; Do not believe <https://savannah.nongnu.org/projects/libunwind/>:
+    ;; see <https://github.com/libunwind/libunwind/issues/372>.
+    (license expat)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]