mirror of
https://gitlab.com/nonguix/nonguix.git
synced 2024-11-22 00:18:07 +01:00
62a5df4222
Fixes https://gitlab.com/nonguix/nonguix/-/issues/224 * *.scm: Use SPDX license identifier and remove obsolete license statement.
29 lines
1 KiB
Scheme
29 lines
1 KiB
Scheme
;;; SPDX-License-Identifier: GPL-3.0-or-later
|
|
;;; Copyright © 2019 Alex Griffin <a@ajgrf.com>
|
|
|
|
(define-module (nonguix licenses)
|
|
#:use-module (guix licenses)
|
|
#:export (nonfree
|
|
undistributable))
|
|
|
|
(define license (@@ (guix licenses) license))
|
|
|
|
(define* (nonfree uri #:optional (comment ""))
|
|
"Return a nonfree license, whose full text can be found
|
|
at URI, which may be a file:// URI pointing the package's tree."
|
|
(license "Nonfree"
|
|
uri
|
|
(string-append
|
|
"This a nonfree license. Check the URI for details. "
|
|
comment)))
|
|
|
|
(define* (undistributable uri #:optional (comment ""))
|
|
"Return a nonfree license for packages which may not be redistributed, whose
|
|
full text can be found at URI, which may be a file:// URI pointing the
|
|
package's tree."
|
|
(license "Nonfree Undistributable"
|
|
uri
|
|
(string-append
|
|
"This a nonfree license. This package may NOT be redistributed "
|
|
"in prebuilt form. Check the URI for details. "
|
|
comment)))
|