diff options
author | Leo Famulari <leo@famulari.name> | 2016-02-15 21:30:53 -0500 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2016-02-15 21:36:46 -0500 |
commit | 6ac2af78e032258513f42be1f25219da90260b1c (patch) | |
tree | a0fce548207d72774404012d7bebab153b29552b /gnu/packages/audio.scm | |
parent | 8763fdf8a59f16952d1848e80ae6db77e9918c2a (diff) | |
download | guix-6ac2af78e032258513f42be1f25219da90260b1c.tar.gz |
gnu: shntool: Fix license.
* gnu/packages/audio.scm (shntool)[license]: Correct 'gpl3+' to 'gpl2+' and add 'x11'.
Diffstat (limited to 'gnu/packages/audio.scm')
-rw-r--r-- | gnu/packages/audio.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index 7f0d87ddf7..10f16ddd1f 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -2032,4 +2032,5 @@ utility. File formats are abstracted from its core, so it can process any file that contains WAVE data, compressed or not---provided there exists a format module to handle that particular file type.") (home-page "http://etree.org/shnutils/shntool/") - (license license:gpl3+))) + ;; 'install-sh' bears the x11 license + (license (list license:gpl2+ license:x11)))) |