mirror of
git://git.savannah.gnu.org/guix.git
synced 2023-12-14 03:33:07 +01:00
gnu: lua: Use "license:" prefix.
* gnu/packages/gstreamer.scm (define-module): Import guix licenses with "license:" prefix.
This commit is contained in:
parent
07cbe28ede
commit
572e433faf
1 changed files with 3 additions and 3 deletions
|
@ -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)))
|
||||
|
|
Loading…
Reference in a new issue