diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2016-08-22 16:46:52 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2016-08-28 12:41:27 +0200 |
commit | 572e433faf74bf75d218ae911539a2cca4e4293d (patch) | |
tree | 823ab2299ead75031fb953bfc9a5659257f47904 /gnu/packages/lua.scm | |
parent | 07cbe28edeeaa13fdf078114ec17eb9cb921a993 (diff) | |
download | patches-572e433faf74bf75d218ae911539a2cca4e4293d.tar patches-572e433faf74bf75d218ae911539a2cca4e4293d.tar.gz |
gnu: lua: Use "license:" prefix.
* gnu/packages/gstreamer.scm (define-module): Import guix licenses with
"license:" prefix.
Diffstat (limited to 'gnu/packages/lua.scm')
-rw-r--r-- | gnu/packages/lua.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/lua.scm b/gnu/packages/lua.scm index 52606f4eab..5ba83d74b0 100644 --- a/gnu/packages/lua.scm +++ b/gnu/packages/lua.scm @@ -22,7 +22,7 @@ ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>. (define-module (gnu packages lua) - #:use-module (guix licenses) + #:use-module ((guix licenses) #:prefix license:) #:use-module (guix packages) #:use-module (guix download) #:use-module (guix build-system gnu) @@ -70,7 +70,7 @@ based on associative arrays and extensible semantics. Lua is dynamically typed, runs by interpreting bytecode for a register-based virtual machine, and has automatic memory management with incremental garbage collection, making it ideal for configuration, scripting, and rapid prototyping.") - (license x11))) + (license license:x11))) (define-public lua-5.1 (package (inherit lua) @@ -108,4 +108,4 @@ for configuration, scripting, and rapid prototyping.") 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.") - (license x11))) + (license license:x11))) |