summaryrefslogtreecommitdiffstats
path: root/pkgs/development/interpreters/luajit/default.nix
blob: 7c11be739f7b656d8aad233b6d72d9743df19c35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ stdenv, fetchurl }:

stdenv.mkDerivation rec{
    version = "2.0.2";
    name = "LuaJIT-${version}";

    src = fetchurl {
        url="http://luajit.org/download/${name}.tar.gz";
        sha256="0f3cykihfdn3gi6na9p0xjd4jnv26z18m441n5vyg42q9abh4ln0";
    };

    patchPhase = ''
      substituteInPlace Makefile \
        --replace ldconfig ${stdenv.glibc}/sbin/ldconfig
    '';

    installPhase = ''
        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;
    };
}