2012-10-10 19:24:37 +02:00
|
|
|
{ stdenv, fetchurl, readline}:
|
|
|
|
|
2012-12-25 11:08:52 +01:00
|
|
|
let
|
|
|
|
dsoPatch = fetchurl {
|
|
|
|
url = "https://projects.archlinux.org/svntogit/packages.git/plain/trunk/lua-arch.patch?h=packages/lua51";
|
|
|
|
sha256 = "11fcyb4q55p4p7kdb8yp85xlw8imy14kzamp2khvcyxss4vw8ipw";
|
|
|
|
name = "lua-arch.patch";
|
|
|
|
};
|
|
|
|
in
|
2012-10-10 19:24:37 +02:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "lua-5.1.5";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://www.lua.org/ftp/${name}.tar.gz";
|
|
|
|
sha256 = "2640fc56a795f29d28ef15e13c34a47e223960b0240e8cb0a82d9b0738695333";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ readline ];
|
|
|
|
|
2012-12-25 11:08:52 +01:00
|
|
|
patches = [ dsoPatch ];
|
|
|
|
|
|
|
|
configurePhase = ''
|
|
|
|
makeFlagsArray=( INSTALL_TOP=$out INSTALL_MAN=$out/share/man/man1 PLAT=linux CFLAGS="-O2 -fPIC" LDLAGS="-fPIC" )
|
|
|
|
installFlagsArray=( TO_BIN="lua luac" TO_LIB="liblua.a liblua.so liblua.so.5.1" INSTALL_DATA='cp -d' )
|
|
|
|
'';
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
mkdir -p "$out/share/doc/lua" "$out/lib/pkgconfig"
|
|
|
|
mv "etc/lua.pc" "$out/lib/pkgconfig/"
|
|
|
|
mv "doc/"*.{gif,png,css,html} "$out/share/doc/lua/"
|
|
|
|
rmdir $out/{share,lib}/lua/5.1 $out/{share,lib}/lua
|
|
|
|
'';
|
2012-10-10 19:24:37 +02:00
|
|
|
|
|
|
|
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;
|
2012-12-25 11:08:52 +01:00
|
|
|
maintainers = [ stdenv.lib.maintainers.simons ];
|
2012-10-10 19:24:37 +02:00
|
|
|
};
|
|
|
|
}
|