Update version of 'lua' and 'lua5' attributes to lua 5.2.

@vcunat kindly pointed out that earlier versions are vulnerable to
CVE-2014-5461. There remain a whole lot of packages that have hard-coded
use of version 5.1, unfortunately.
This commit is contained in:
Peter Simons 2014-09-07 19:55:08 +02:00
parent 568f7d70b9
commit 073cd3cfb9

View file

@ -3646,7 +3646,7 @@ let
lua5_2_compat = callPackage ../development/interpreters/lua-5/5.2.nix {
compat = true;
};
lua5 = lua5_1;
lua5 = lua5_2_compat;
lua = lua5;
lua5_sockets = callPackage ../development/interpreters/lua-5/sockets.nix {};