mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: sound-theme-freedesktop: Specify the applicable licenses.
* gnu/packages/libcanberra.scm (sound-theme-freedesktop)[license]: Specify the actual licenses that apply.
This commit is contained in:
parent
12abc6e395
commit
386b0052f5
1 changed files with 6 additions and 2 deletions
|
@ -18,7 +18,8 @@
|
||||||
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
(define-module (gnu packages libcanberra)
|
(define-module (gnu packages libcanberra)
|
||||||
#:use-module ((guix licenses) #:select (lgpl2.1+))
|
#:use-module ((guix licenses)
|
||||||
|
#:select (lgpl2.1+ gpl2 gpl2+ cc-by-sa4.0 cc-by3.0))
|
||||||
#:use-module (gnu packages)
|
#:use-module (gnu packages)
|
||||||
#:use-module (guix packages)
|
#:use-module (guix packages)
|
||||||
#:use-module (guix download)
|
#:use-module (guix download)
|
||||||
|
@ -112,5 +113,8 @@ (define-public sound-theme-freedesktop
|
||||||
(description
|
(description
|
||||||
"This package provides audio samples that can be used by libcanberra as
|
"This package provides audio samples that can be used by libcanberra as
|
||||||
sounds for various system events.")
|
sounds for various system events.")
|
||||||
(license #f)
|
|
||||||
|
;; The license of the various sounds is given in the 'CREDITS' file.
|
||||||
|
(license (list cc-by-sa4.0 cc-by3.0 gpl2 gpl2+))
|
||||||
|
|
||||||
(home-page "http://www.freedesktop.org/wiki/Specifications/sound-theme-spec/")))
|
(home-page "http://www.freedesktop.org/wiki/Specifications/sound-theme-spec/")))
|
||||||
|
|
Loading…
Reference in a new issue