diff options
author | Ludovic Courtès <ludo@gnu.org> | 2017-06-26 22:02:24 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2017-06-26 22:52:06 +0200 |
commit | 94a400bebae48aebc35fb84aa0b134b25ce46e46 (patch) | |
tree | 685220b8ef7bc60ee87307058278962836e85862 | |
parent | b74e2f610ab813fcbe687d85cae2fe050c3705b8 (diff) | |
download | patches-94a400bebae48aebc35fb84aa0b134b25ce46e46.tar patches-94a400bebae48aebc35fb84aa0b134b25ce46e46.tar.gz |
import cran: Generate a valid 'license' field for "GPL".
Fixes <http://bugs.gnu.org/27294>.
Reported by Joshua Sierles <joshua@joshua.si>.
* guix/import/cran.scm (string->license) <"GPL">: Return a quoted list.
-rw-r--r-- | guix/import/cran.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/import/cran.scm b/guix/import/cran.scm index 8d963a7475..056a7dcc7c 100644 --- a/guix/import/cran.scm +++ b/guix/import/cran.scm @@ -69,7 +69,7 @@ ("BSD_2_clause + file LICENSE" 'bsd-2) ("BSD_3_clause" 'bsd-3) ("BSD_3_clause + file LICENSE" 'bsd-3) - ("GPL" (list 'gpl2+ 'gpl3+)) + ("GPL" '(list gpl2+ gpl3+)) ("GPL (>= 2)" 'gpl2+) ("GPL (>= 3)" 'gpl3+) ("GPL-2" 'gpl2) |