2019-04-27 15:00:12 +02:00
|
|
|
# similar to interpreters/python/default.nix
|
2019-11-21 10:53:10 +01:00
|
|
|
{ stdenv, lib, callPackage, fetchurl, fetchpatch }:
|
2019-04-27 15:00:12 +02:00
|
|
|
|
2021-04-19 13:38:01 +02:00
|
|
|
rec {
|
2020-12-27 12:16:27 +01:00
|
|
|
lua5_4 = callPackage ./interpreter.nix {
|
2021-05-31 19:42:36 +02:00
|
|
|
sourceVersion = { major = "5"; minor = "4"; patch = "3"; };
|
|
|
|
hash = "1yxvjvnbg4nyrdv10bq42gz6dr66pyan28lgzfygqfwy2rv24qgq";
|
2021-05-15 06:57:09 +02:00
|
|
|
|
2021-05-15 12:34:52 +02:00
|
|
|
patches = lib.optional stdenv.isDarwin ./5.4.darwin.patch;
|
2020-12-27 12:16:27 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
lua5_4_compat = lua5_4.override({
|
|
|
|
compat = true;
|
|
|
|
});
|
2019-04-27 15:00:12 +02:00
|
|
|
|
2019-04-27 20:28:54 +02:00
|
|
|
lua5_3 = callPackage ./interpreter.nix {
|
2020-12-29 23:24:20 +01:00
|
|
|
sourceVersion = { major = "5"; minor = "3"; patch = "6"; };
|
|
|
|
hash = "0q3d8qhd7p0b7a4mh9g7fxqksqfs6mr1nav74vq26qvkp2dxcpzw";
|
|
|
|
|
2019-11-21 10:53:10 +01:00
|
|
|
patches =
|
2020-12-29 23:24:20 +01:00
|
|
|
lib.optionals stdenv.isDarwin [ ./5.2.darwin.patch ];
|
2019-04-27 20:28:54 +02:00
|
|
|
};
|
2019-04-27 15:00:12 +02:00
|
|
|
|
|
|
|
lua5_3_compat = lua5_3.override({
|
|
|
|
compat = true;
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
lua5_2 = callPackage ./interpreter.nix {
|
|
|
|
sourceVersion = { major = "5"; minor = "2"; patch = "4"; };
|
|
|
|
hash = "0jwznq0l8qg9wh5grwg07b5cy3lzngvl5m2nl1ikp6vqssmf9qmr";
|
2021-04-19 13:38:01 +02:00
|
|
|
patches = lib.optional stdenv.isDarwin ./5.2.darwin.patch;
|
2019-04-27 15:00:12 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
lua5_2_compat = lua5_2.override({
|
|
|
|
compat = true;
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
lua5_1 = callPackage ./interpreter.nix {
|
|
|
|
sourceVersion = { major = "5"; minor = "1"; patch = "5"; };
|
|
|
|
hash = "2640fc56a795f29d28ef15e13c34a47e223960b0240e8cb0a82d9b0738695333";
|
2021-04-19 13:38:01 +02:00
|
|
|
patches = (lib.optional stdenv.isDarwin ./5.1.darwin.patch)
|
2019-10-02 22:13:12 +02:00
|
|
|
++ [ ./CVE-2014-5461.patch ];
|
2019-04-27 15:00:12 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
luajit_2_0 = import ../luajit/2.0.nix {
|
|
|
|
self = luajit_2_0;
|
|
|
|
inherit callPackage lib;
|
|
|
|
};
|
|
|
|
|
|
|
|
luajit_2_1 = import ../luajit/2.1.nix {
|
|
|
|
self = luajit_2_1;
|
2019-06-16 21:59:06 +02:00
|
|
|
inherit callPackage;
|
2019-04-27 15:00:12 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|