[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/01: gnu: jack-1: Fix licenses.
From: |
David Thompson |
Subject: |
01/01: gnu: jack-1: Fix licenses. |
Date: |
Fri, 30 Jan 2015 00:21:17 +0000 |
davexunit pushed a commit to branch master
in repository guix.
commit e89fa047f76048ac907756a5f08ddc06c84c6c40
Author: David Thompson <address@hidden>
Date: Thu Jan 29 19:19:08 2015 -0500
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.
---
gnu/packages/audio.scm | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index b011606..daf7feb 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+))))