nixpkgs/pkgs/development/interpreters/luajit/default.nix

42 lines
1.2 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "luajit-${version}";
version = "2.1.0-beta2";
2016-03-19 09:35:20 +00:00
luaversion = "5.1";
src = fetchurl {
url = "http://luajit.org/download/LuaJIT-${version}.tar.gz";
sha256 = "0iyghj1xjlmd9ywa4flf9yszynf3jhbp0yqb9b49k7ab0g528fbi";
};
enableParallelBuilding = true;
2014-05-09 07:06:29 +00:00
patchPhase = ''
substituteInPlace Makefile \
--replace /usr/local $out
substituteInPlace src/Makefile --replace gcc cc
'' + stdenv.lib.optionalString (stdenv.cc.libc != null)
''
substituteInPlace Makefile \
2016-03-11 14:57:39 +00:00
--replace ldconfig ${stdenv.cc.libc.bin or stdenv.cc.libc}/bin/ldconfig
'';
configurePhase = false;
buildFlags = [ "amalg" ]; # Build highly optimized version
2016-03-19 09:35:20 +00:00
installPhase = ''
make install INSTALL_INC=$out/include PREFIX=$out
2016-03-21 21:17:31 +00:00
ln -s $out/bin/luajit* $out/bin/lua
2016-03-19 09:35:20 +00:00
ln -s $out/bin/luajit* $out/bin/luajit
'';
2014-05-09 07:06:29 +00:00
meta = with stdenv.lib; {
description = "High-performance JIT compiler for Lua 5.1";
homepage = http://luajit.org;
2014-05-09 07:06:29 +00:00
license = licenses.mit;
platforms = platforms.linux ++ platforms.darwin;
2016-03-19 09:35:20 +00:00
maintainers = with maintainers ; [ thoughtpolice smironov ];
};
}