mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 08:53:21 +00:00
pkgs/development/interpreters/lua-5: added meta section to the expression
svn path=/nixpkgs/trunk/; revision=23357
This commit is contained in:
parent
fb24277ef2
commit
d3a8a3f7d0
@ -15,4 +15,20 @@ stdenv.mkDerivation {
|
||||
install -D -m 644 etc/lua.pc $out/lib/pkgconfig/lua.pc
|
||||
'';
|
||||
buildInputs = [ ncurses readline ];
|
||||
|
||||
meta = {
|
||||
homepage = "http://www.lua.org";
|
||||
description = "Lua is a powerful, fast, lightweight, embeddable scripting language.";
|
||||
longDescription = ''
|
||||
Lua combines simple procedural syntax with powerful data
|
||||
description constructs 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 = "MIT";
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
maintainers = [];
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user