mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 22:26:40 -05:00
licenses: Add new meta-license fsf-free.
* guix/licenses.scm (fsf-free): New record with constructor.
This commit is contained in:
parent
a6ef51e378
commit
6d36a6f3b0
1 changed files with 9 additions and 1 deletions
|
@ -39,7 +39,8 @@ (define-module (guix licenses)
|
|||
qpl
|
||||
vim
|
||||
x11
|
||||
zlib))
|
||||
zlib
|
||||
fsf-free))
|
||||
|
||||
(define-record-type <license>
|
||||
(license name uri comment)
|
||||
|
@ -234,4 +235,11 @@ (define zlib
|
|||
"http://www.gzip.org/zlib/zlib_license.html"
|
||||
"https://www.gnu.org/licenses/license-list#ZLib"))
|
||||
|
||||
(define* (fsf-free uri #:optional (comment ""))
|
||||
"Return a license that does not fit any of the ones above or a collection
|
||||
of licenses, approved as free by the FSF. More details can be found at URI."
|
||||
(license "FSF-free"
|
||||
uri
|
||||
comment))
|
||||
|
||||
;;; licenses.scm ends here
|
||||
|
|
Loading…
Reference in a new issue