mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 13:49:23 -05:00
licenses: Add wtfpl2.
* guix/licenses.scm (wtfpl2): New variable. Signed-off-by: Leo Famulari <leo@famulari.name>
This commit is contained in:
parent
c2b4c06391
commit
d8c8e423ed
1 changed files with 8 additions and 2 deletions
|
@ -8,7 +8,7 @@
|
||||||
;;; Copyright © 2016 Leo Famulari <leo@famulari.name>
|
;;; Copyright © 2016 Leo Famulari <leo@famulari.name>
|
||||||
;;; Copyright © 2016 Fabian Harfert <fhmgufs@web.de>
|
;;; Copyright © 2016 Fabian Harfert <fhmgufs@web.de>
|
||||||
;;; Copyright © 2016 Rene Saavedra <rennes@openmailbox.org>
|
;;; Copyright © 2016 Rene Saavedra <rennes@openmailbox.org>
|
||||||
;;; Copyright © 2016 ng0 <ngillmann@runbox.com>
|
;;; Copyright © 2016, 2017 ng0 <ng0@libertad.pw>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -74,7 +74,8 @@ (define-module (guix licenses)
|
||||||
x11 x11-style
|
x11 x11-style
|
||||||
zpl2.1
|
zpl2.1
|
||||||
zlib
|
zlib
|
||||||
fsf-free))
|
fsf-free
|
||||||
|
wtfpl2))
|
||||||
|
|
||||||
(define-record-type <license>
|
(define-record-type <license>
|
||||||
(license name uri comment)
|
(license name uri comment)
|
||||||
|
@ -450,6 +451,11 @@ (define unlicense
|
||||||
"https://unlicense.org/"
|
"https://unlicense.org/"
|
||||||
"https://www.gnu.org/licenses/license-list.html#Unlicense"))
|
"https://www.gnu.org/licenses/license-list.html#Unlicense"))
|
||||||
|
|
||||||
|
(define wtfpl2
|
||||||
|
(license "WTFPL 2"
|
||||||
|
"http://www.wtfpl.net"
|
||||||
|
"http://www.wtfpl.net/about/"))
|
||||||
|
|
||||||
(define x11
|
(define x11
|
||||||
(license "X11"
|
(license "X11"
|
||||||
"http://directory.fsf.org/wiki/License:X11"
|
"http://directory.fsf.org/wiki/License:X11"
|
||||||
|
|
Loading…
Reference in a new issue