diff options
author | Eric Bavier <bavier@member.fsf.org> | 2015-04-19 09:37:35 -0500 |
---|---|---|
committer | Eric Bavier <bavier@member.fsf.org> | 2015-04-19 19:48:52 -0500 |
commit | 47945cf353de78bbdbf70f5095289bfa8aa62470 (patch) | |
tree | d71a6e9b3938310b47aa3fa3d7b3cbcc6c32d773 | |
parent | ae6904dc0b9d38175ff07cea845b58cd94492ead (diff) | |
download | guix-47945cf353de78bbdbf70f5095289bfa8aa62470.tar guix-47945cf353de78bbdbf70f5095289bfa8aa62470.tar.gz |
import: cpan: Fix license string for Artistic license.
* guix/import/cpan.scm (string->license): Remove extraneous "_0"
suffix for Artistics licenses.
-rw-r--r-- | guix/import/cpan.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/guix/import/cpan.scm b/guix/import/cpan.scm index 37dd3b162c..c80d568101 100644 --- a/guix/import/cpan.scm +++ b/guix/import/cpan.scm @@ -49,8 +49,8 @@ ("agpl_3" 'agpl3) ;; apache_1_1 ("apache_2_0" 'asl2.0) - ;; artistic_1_0 - ("artistic_2_0" 'artistic2.0) + ;; artistic_1 + ("artistic_2" 'artistic2.0) ("bsd" 'bsd-3) ("freebsd" 'bsd-2) ;; gfdl_1_2 |