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:
Ludovic Courtès 2015-09-06 12:34:38 +02:00
parent 12abc6e395
commit 386b0052f5

View file

@ -18,7 +18,8 @@
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
(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 (guix packages)
#:use-module (guix download)
@ -112,5 +113,8 @@ (define-public sound-theme-freedesktop
(description
"This package provides audio samples that can be used by libcanberra as
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/")))