lua: add 5.4.2

This commit is contained in:
Arnout Engelen
2020-12-27 16:01:28 +01:00
committed by Matthieu Coudron
parent 548511929f
commit d29ab49bb9
3 changed files with 74 additions and 1 deletions
@@ -14,6 +14,19 @@ let
};
in rec {
lua5_4 = callPackage ./interpreter.nix {
sourceVersion = { major = "5"; minor = "4"; patch = "2"; };
hash = "0ksj5zpj74n0jkamy3di1p6l10v4gjnd2zjnb453qc6px6bhsmqi";
patches = [
# build lua as a shared library as well, MIT-licensed from
# https://github.com/archlinux/svntogit-packages/tree/packages/lua/trunk
./liblua.so.patch
];
};
lua5_4_compat = lua5_4.override({
compat = true;
});
lua5_3 = callPackage ./interpreter.nix {
sourceVersion = { major = "5"; minor = "3"; patch = "5"; };