[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#29517] [PATCH] gnu: gl: Add virtualgl. (v2)
From: |
Ludovic Courtès |
Subject: |
[bug#29517] [PATCH] gnu: gl: Add virtualgl. (v2) |
Date: |
Fri, 08 Dec 2017 15:00:56 +0100 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/25.3 (gnu/linux) |
Rutger Helling <address@hidden> skribis:
> From c593bd89f7f991cc8d9a19e1d06f0439f16d7805 Mon Sep 17 00:00:00 2001
> From: Rutger Helling <address@hidden>
> Date: Fri, 8 Dec 2017 11:31:57 +0100
> Subject: [PATCH] guix: licenses: Add wxWindows 3.1 license.
>
> * guix/licenses.scm: Add wxWindows 3.1 license.
I adjusted the commit log and made these changes (reflect the “or any
later version” with ‘+’, have the first field be the URI of the license
and the second be the comments about the license):
diff --git a/guix/licenses.scm b/guix/licenses.scm
index 8fa121fd4..269d97c72 100644
--- a/guix/licenses.scm
+++ b/guix/licenses.scm
@@ -92,7 +92,7 @@
zlib
fsf-free
wtfpl2
- wxwindows3.1
+ wxwindows3.1+
fsdg-compatible))
(define-record-type <license>
@@ -583,10 +583,10 @@ at URI, which may be a file:// URI pointing the package's
tree."
"http://www.wtfpl.net"
"http://www.wtfpl.net/about/"))
-(define wxwindows3.1
- (license "wxWindows 3.1"
- "https://wxwidgets.org"
- "https://wxwidgets.org/about/licence"))
+(define wxwindows3.1+
+ (license "wxWindows 3.1+"
+ "https://wxwidgets.org/about/licence"
+ "https://www.gnu.org/licenses/license-list.html#Wxwind"))
(define x11
(license "X11"
Ludo’.