3
0
Fork 0
forked from mirrors/nixpkgs

mysql: update from 5.1.72 to 5.1.73, potentially fixes CVE-2013-5908, CVE-2014-0401, CVE-2014-0412, CVE-2014-0437

This commit is contained in:
Nixpkgs Monitor 2014-09-06 18:20:17 +02:00 committed by Aristid Breitkreuz
parent 7694fcf524
commit 43fdbc0bd7

View file

@ -3,11 +3,11 @@
# Note: zlib is not required; MySQL can use an internal zlib.
stdenv.mkDerivation rec {
name = "mysql-5.1.72";
name = "mysql-5.1.73";
src = fetchurl {
url = "http://cdn.mysql.com/Downloads/MySQL-5.1/${name}.tar.gz";
md5 = "ed79cd48e3e7402143548917813cdb80";
sha256 = "1dfwi4ck0vq6sdci6gz0031s7zz5lc3pddqlgm0292s00l9y5sq5";
};
buildInputs = [ncurses zlib perl openssl] ++ stdenv.lib.optional stdenv.isLinux ps;