forked from mirrors/nixpkgs
lua-4: fixed build
svn path=/nixpkgs/trunk/; revision=27678
This commit is contained in:
parent
e7746a78ed
commit
f92f3deed8
|
@ -2,9 +2,29 @@
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "lua-4.0.1";
|
name = "lua-4.0.1";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = http://www.lua.org/ftp/lua-4.0.1.tar.gz;
|
url = http://www.lua.org/ftp/lua-4.0.1.tar.gz;
|
||||||
md5 = "a31d963dbdf727f9b34eee1e0d29132c";
|
md5 = "a31d963dbdf727f9b34eee1e0d29132c";
|
||||||
};
|
};
|
||||||
builder= ./builder.sh;
|
|
||||||
|
configurePhase = "sed -i -e 's/CFLAGS= -O2/CFLAGS = -O3 -fPIC/' config";
|
||||||
|
buildFlags = "all so sobin";
|
||||||
|
installFlags = "INSTALL_ROOT=$$out";
|
||||||
|
|
||||||
|
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.unix;
|
||||||
|
maintainers = [ ];
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue