gnu: smalltalk: Use 'license:' prefix.

* gnu/packages/smalltalk.scm: Use 'license:' prefix for (guix licenses).
This commit is contained in:
Ludovic Courtès 2016-08-30 11:25:13 +02:00
parent ea206df45f
commit 5b65bcab59
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>. ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
(define-module (gnu packages smalltalk) (define-module (gnu packages smalltalk)
#:use-module (guix licenses) #:use-module ((guix licenses) #:prefix license:)
#:use-module (guix packages) #:use-module (guix packages)
#:use-module (guix download) #:use-module (guix download)
#:use-module (guix build-system gnu) #:use-module (guix build-system gnu)
@ -63,4 +63,4 @@
"GNU Smalltalk is a free implementation of the Smalltalk language. It "GNU Smalltalk is a free implementation of the Smalltalk language. It
implements the ANSI standard for the language and also includes extra classes implements the ANSI standard for the language and also includes extra classes
such as ones for networking and GUI programming.") such as ones for networking and GUI programming.")
(license gpl2+))) (license license:gpl2+)))