diff options
author | Ludovic Courtès <ludo@gnu.org> | 2018-11-20 13:46:09 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2018-11-20 18:36:05 +0100 |
commit | 242b29baa16552f3cb6f564da4ad8a729cd3e38f (patch) | |
tree | 949a0ed902257b0a0fbd7423af38edd79fc605ed | |
parent | 662e2285f502b65600b0b5a12c040d050be8999d (diff) | |
download | guix-242b29baa16552f3cb6f564da4ad8a729cd3e38f.tar guix-242b29baa16552f3cb6f564da4ad8a729cd3e38f.tar.gz |
gnu: autotalent: Simplify 'license'.
* gnu/packages/audio.scm (autotalent)[license]: Remove unnecessary 'list'.
-rw-r--r-- | 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 d8a3c3c455..52769921ee 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -466,7 +466,7 @@ controls are allowable notes, strength of correction, LFO for vibrato and formant warp.") ;; All code except the FFT routine is licensed under GPLv2+. ;; The FFT routine is under BSD-3. - (license (list license:gpl2+)))) + (license license:gpl2+))) (define-public azr3 (package |