summary refs log tree commit diff
path: root/pkgs/development/interpreters/lua-5/default.nix
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2010-08-23 14:26:26 +0000
committerPeter Simons <simons@cryp.to>2010-08-23 14:26:26 +0000
commitd3a8a3f7d00b8c586d0e29bce6c2d8b4cd7790d1 (patch)
tree806234644f87168ee7dc417993dd963189151f18 /pkgs/development/interpreters/lua-5/default.nix
parentfb24277ef20399eceb436fcad288d646b019d34d (diff)
downloadnixlib-d3a8a3f7d00b8c586d0e29bce6c2d8b4cd7790d1.tar
nixlib-d3a8a3f7d00b8c586d0e29bce6c2d8b4cd7790d1.tar.gz
nixlib-d3a8a3f7d00b8c586d0e29bce6c2d8b4cd7790d1.tar.bz2
nixlib-d3a8a3f7d00b8c586d0e29bce6c2d8b4cd7790d1.tar.lz
nixlib-d3a8a3f7d00b8c586d0e29bce6c2d8b4cd7790d1.tar.xz
nixlib-d3a8a3f7d00b8c586d0e29bce6c2d8b4cd7790d1.tar.zst
nixlib-d3a8a3f7d00b8c586d0e29bce6c2d8b4cd7790d1.zip
pkgs/development/interpreters/lua-5: added meta section to the expression
svn path=/nixpkgs/trunk/; revision=23357
Diffstat (limited to 'pkgs/development/interpreters/lua-5/default.nix')
-rw-r--r--pkgs/development/interpreters/lua-5/default.nix16
1 files changed, 16 insertions, 0 deletions
diff --git a/pkgs/development/interpreters/lua-5/default.nix b/pkgs/development/interpreters/lua-5/default.nix
index b639a07ad9df..b7dc413b489a 100644
--- a/pkgs/development/interpreters/lua-5/default.nix
+++ b/pkgs/development/interpreters/lua-5/default.nix
@@ -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 = [];
+  };
 }