LuaJIT: New package

Just-in-time compiler for lua 5.1 with strong focus on performance.
Uses the same API as lua 5.1 which makes it extremely easy to integrate.
This commit is contained in:
Kim Simmons 2013-11-15 17:20:29 +01:00
parent fd7bc4ebfd
commit a8e3167228
2 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,22 @@
{stdenv, fetchurl} :
stdenv.mkDerivation rec{
version = "2.0.2";
name = "LuaJIT-${version}";
src = fetchurl {
url="http://luajit.org/download/LuaJIT-2.0.2.tar.gz";
sha256="0f3cykihfdn3gi6na9p0xjd4jnv26z18m441n5vyg42q9abh4ln0";
};
installPhase = ''
mkdir -p $out
make install PREFIX=$out
'';
meta = {
description= "Just-in-time compiler and interpreter for lua 5.1.";
homepage = http://luajit.org;
license = stdenv.lib.licenses.mit;
};
}

View File

@ -3174,6 +3174,8 @@ let
lua = lua5; lua = lua5;
}; };
luajit = callPackage ../development/interpreters/luajit {};
lush2 = callPackage ../development/interpreters/lush {}; lush2 = callPackage ../development/interpreters/lush {};
maude = callPackage ../development/interpreters/maude { }; maude = callPackage ../development/interpreters/maude { };