summaryrefslogtreecommitdiffstats
path: root/pkgs/development/interpreters/lua-5/default.nix
diff options
context:
space:
mode:
authorDaniel Nagy <danielnagy@posteo.de>2020-12-29 23:24:20 +0100
committerDaniel Nagy <danielnagy@posteo.de>2020-12-29 23:28:17 +0100
commit9ce1ebb3c248c722692fe75f05640cd88bfeba65 (patch)
tree245cc2718fe06e02e3b753f570f014bb5631a305 /pkgs/development/interpreters/lua-5/default.nix
parentba4b4aea566ee8783f9196a6b6cefe64cb9ec491 (diff)
lua5_3: 5.3.5 -> 5.3.6
We also remove the CVE-2019-6706 patch because it has been merged upstream. See: https://www.lua.org/work/diffs-lua-5.3.5-lua-5.3.6.html
Diffstat (limited to 'pkgs/development/interpreters/lua-5/default.nix')
-rw-r--r--pkgs/development/interpreters/lua-5/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/development/interpreters/lua-5/default.nix b/pkgs/development/interpreters/lua-5/default.nix
index 5c094893982c..d78d5ba0c2df 100644
--- a/pkgs/development/interpreters/lua-5/default.nix
+++ b/pkgs/development/interpreters/lua-5/default.nix
@@ -29,12 +29,12 @@ in rec {
});
lua5_3 = callPackage ./interpreter.nix {
- sourceVersion = { major = "5"; minor = "3"; patch = "5"; };
- hash = "0c2eed3f960446e1a3e4b9a1ca2f3ff893b6ce41942cf54d5dd59ab4b3b058ac";
+ sourceVersion = { major = "5"; minor = "3"; patch = "6"; };
+ hash = "0q3d8qhd7p0b7a4mh9g7fxqksqfs6mr1nav74vq26qvkp2dxcpzw";
+
patches =
- lib.optionals stdenv.isDarwin [ ./5.2.darwin.patch ] ++ [
- ./CVE-2019-6706.patch
- ];
+ lib.optionals stdenv.isDarwin [ ./5.2.darwin.patch ];
+
postConfigure = lib.optionalString (!stdenv.isDarwin) ''
cat ${./lua-5.3-dso.make} >> src/Makefile
sed -e 's/ALL_T *= */& $(LUA_SO)/' -i src/Makefile