lua-5.2: minor update to fix CVE-2014-5461

Note that almost all packages use lua-5.1 which does remain vulnerable,
as they released no update on that branch. CC: @peti.
This commit is contained in:
Vladimír Čunát 2014-09-06 21:26:03 +02:00
parent 18d9904433
commit 420385f81a

View File

@ -10,11 +10,11 @@ in
stdenv.mkDerivation rec {
name = "lua-${version}";
majorVersion = "5.2";
version = "${majorVersion}.2";
version = "${majorVersion}.3";
src = fetchurl {
url = "http://www.lua.org/ftp/${name}.tar.gz";
sha256 = "004zyh9p3lpvbwhyhlmrw6wwcia5abx84q4h2brkn4zdypipvmiz";
sha1 = "926b7907bc8d274e063d42804666b40a3f3c124c";
};
nativeBuildInputs = [ readline ];