gnu: lua: Use "license:" prefix.

* gnu/packages/gstreamer.scm (define-module): Import guix licenses with
"license:" prefix.
This commit is contained in:
Ricardo Wurmus 2016-08-22 16:46:52 +02:00
parent 07cbe28ede
commit 572e433faf
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -22,7 +22,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 lua) (define-module (gnu packages lua)
#: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)
@ -70,7 +70,7 @@ (define-public lua
runs by interpreting bytecode for a register-based virtual machine, and has runs by interpreting bytecode for a register-based virtual machine, and has
automatic memory management with incremental garbage collection, making it ideal automatic memory management with incremental garbage collection, making it ideal
for configuration, scripting, and rapid prototyping.") for configuration, scripting, and rapid prototyping.")
(license x11))) (license license:x11)))
(define-public lua-5.1 (define-public lua-5.1
(package (inherit lua) (package (inherit lua)
@ -108,4 +108,4 @@ (define-public luajit
programming language. Lua is a powerful, dynamic and light-weight programming programming language. Lua is a powerful, dynamic and light-weight programming
language. It may be embedded or used as a general-purpose, stand-alone language. It may be embedded or used as a general-purpose, stand-alone
language.") language.")
(license x11))) (license license:x11)))