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
1 changed files with 16 additions and 0 deletions
|
@ -15,4 +15,20 @@ stdenv.mkDerivation {
|
||||||
install -D -m 644 etc/lua.pc $out/lib/pkgconfig/lua.pc
|
install -D -m 644 etc/lua.pc $out/lib/pkgconfig/lua.pc
|
||||||
'';
|
'';
|
||||||
buildInputs = [ ncurses readline ];
|
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 a new issue