gnu: Use qualified license names in chicken.scm instead of selective import.

* gnu/packages/chicken.scm (chicken)[license]: Use qualified name.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
raingloom 2020-10-13 09:49:35 +02:00 committed by Ludovic Courtès
parent 64f032d73f
commit a0e2a3e30c
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -24,7 +24,7 @@ (define-module (gnu packages chicken)
#:use-module (guix download) #:use-module (guix download)
#:use-module (gnu packages commencement) #:use-module (gnu packages commencement)
#:use-module ((guix licenses) #:use-module ((guix licenses)
#:select (bsd-3))) #:prefix license:))
(define-public chicken (define-public chicken
(package (package
@ -71,4 +71,4 @@ (define-public chicken
"CHICKEN is a compiler for the Scheme programming language. CHICKEN "CHICKEN is a compiler for the Scheme programming language. CHICKEN
produces portable and efficient C, supports almost all of the R5RS Scheme produces portable and efficient C, supports almost all of the R5RS Scheme
language standard, and includes many enhancements and extensions.") language standard, and includes many enhancements and extensions.")
(license bsd-3))) (license license:bsd-3)))