summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorDavid Thompson <dthompson2@worcester.edu>2015-01-29 19:19:08 -0500
committerDavid Thompson <dthompson2@worcester.edu>2015-01-29 19:19:08 -0500
commite89fa047f76048ac907756a5f08ddc06c84c6c40 (patch)
treecdd576acaf0dc9ff88022400343e1e35dcfb7e5d /gnu
parent8c6c91feadf8cc35426f0254e1b898eb3f9e6fbf (diff)
downloadguix-patches-e89fa047f76048ac907756a5f08ddc06c84c6c40.tar
guix-patches-e89fa047f76048ac907756a5f08ddc06c84c6c40.tar.gz
gnu: jack-1: Fix licenses.
* gnu/packages/audio.scm (jack-1): Change license field to a list of licenses instead of a list of symbols.
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/audio.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index b011606c24..daf7feb1aa 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -54,4 +54,4 @@ professional audio work. This means that it focuses on two key areas:
synchronous execution of all clients, and low latency operation.")
;; Most files are licensed under the GPL. However, the libjack/ tree is
;; licensed under the LGPL in order to allow for proprietary usage.
- (license '(license:gpl2+ license:lgpl2.1+))))
+ (license (list license:gpl2+ license:lgpl2.1+))))