diff mbox series

[bug#56868] gnu: libunwind: Fix license.

Message ID 0773eaec59db6b917c0592f6fa941244de16230f.1659351310.git.philip@philipmcgrath.com
State Accepted
Headers show
Series [bug#56868] gnu: libunwind: Fix license. | expand

Commit Message

Philip McGrath Aug. 1, 2022, 10:55 a.m. UTC
The license of libunwind is Expat, not X11:
see <https://github.com/libunwind/libunwind/issues/372>.

* gnu/packages/libunwind.scm (libunwind)[license]: Fix it.
---
 gnu/packages/libunwind.scm | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)


base-commit: 3a656ea836f87f30f1b34852cb4efc911363d2b4

Comments

Ludovic Courtès Aug. 3, 2022, 3:20 p.m. UTC | #1
Hi,

Philip McGrath <philip@philipmcgrath.com> skribis:

> The license of libunwind is Expat, not X11:
> see <https://github.com/libunwind/libunwind/issues/372>.
>
> * gnu/packages/libunwind.scm (libunwind)[license]: Fix it.

Applied, thanks!

Ludo’.
diff mbox series

Patch

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 @@  (define-public libunwind
 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)))