luajit: add 2.0 version again

The reason will be apparent from the followup commit.
Also order the phases, quote shell variables, add myself to
maintainers, etc.
This commit is contained in:
Vladimír Čunát 2017-07-07 10:44:33 +02:00
parent c7739191da
commit e36b588f93
No known key found for this signature in database
GPG Key ID: E747DF1F9575A3AA
2 changed files with 58 additions and 31 deletions

View File

@ -1,41 +1,67 @@
{ stdenv, fetchurl }: { stdenv, fetchurl }:
rec {
stdenv.mkDerivation rec { luajit = luajit_2_1;
name = "luajit-${version}";
version = "2.1.0-beta3";
luaversion = "5.1";
src = fetchurl { luajit_2_0 = generic {
url = "http://luajit.org/download/LuaJIT-${version}.tar.gz"; version = "2.0.5";
isStable = true;
sha256 = "0yg9q4q6v028bgh85317ykc9whgxgysp76qzaqgq55y6jy11yjw7";
};
luajit_2_1 = generic {
version = "2.1.0-beta3";
isStable = false;
sha256 = "1hyrhpkwjqsv54hnnx4cl8vk44h9d6c9w0fz1jfjz00w255y7lhs"; sha256 = "1hyrhpkwjqsv54hnnx4cl8vk44h9d6c9w0fz1jfjz00w255y7lhs";
}; };
enableParallelBuilding = true;
patchPhase = '' generic =
substituteInPlace Makefile \ { version, sha256 ? null, isStable
--replace /usr/local $out , name ? "luajit-${version}"
, src ?
(fetchurl {
url = "http://luajit.org/download/LuaJIT-${version}.tar.gz";
inherit sha256;
})
}:
substituteInPlace src/Makefile --replace gcc cc stdenv.mkDerivation rec {
'' + stdenv.lib.optionalString (stdenv.cc.libc != null) inherit name version src;
''
substituteInPlace Makefile \
--replace ldconfig ${stdenv.cc.libc.bin or stdenv.cc.libc}/bin/ldconfig
'';
configurePhase = false; luaversion = "5.1";
buildFlags = [ "amalg" ]; # Build highly optimized version
installPhase = ''
make install INSTALL_INC=$out/include PREFIX=$out
ln -s $out/bin/luajit* $out/bin/lua
ln -s $out/bin/luajit* $out/bin/luajit
'';
meta = with stdenv.lib; { patchPhase = ''
description = "High-performance JIT compiler for Lua 5.1"; substituteInPlace Makefile \
homepage = http://luajit.org; --replace /usr/local "$out"
license = licenses.mit;
platforms = platforms.linux ++ platforms.darwin; substituteInPlace src/Makefile --replace gcc cc
maintainers = with maintainers ; [ thoughtpolice smironov ]; '' + stdenv.lib.optionalString (stdenv.cc.libc != null)
}; ''
substituteInPlace Makefile \
--replace ldconfig ${stdenv.cc.libc.bin or stdenv.cc.libc}/bin/ldconfig
'';
configurePhase = false;
buildFlags = [ "amalg" ]; # Build highly optimized version
enableParallelBuilding = true;
installPhase = ''
make install INSTALL_INC="$out"/include PREFIX="$out"
ln -s "$out"/bin/luajit-* "$out"/bin/lua
''
+ stdenv.lib.optionalString (!isStable)
''
ln -s "$out"/bin/luajit-* "$out"/bin/luajit
'';
meta = with stdenv.lib; {
description = "High-performance JIT compiler for Lua 5.1";
homepage = http://luajit.org;
license = licenses.mit;
platforms = platforms.linux ++ platforms.darwin;
maintainers = with maintainers ; [ thoughtpolice smironov vcunat ];
};
};
} }

View File

@ -6117,7 +6117,8 @@ with pkgs;
luaPackages = lua52Packages; luaPackages = lua52Packages;
luajit = callPackage ../development/interpreters/luajit {}; inherit (callPackages ../development/interpreters/luajit {})
luajit luajit_2_0 luajit_2_1;
luarocks = luaPackages.luarocks; luarocks = luaPackages.luarocks;