httpd: Update to 2.2.27

CVE-2013-6438, CVE-2014-0098

+3 -3
+3 -3
pkgs/servers/http/apache-httpd/2.2.nix
··· 12 12 assert mpm == "prefork" || mpm == "worker" || mpm == "event"; 13 13 14 14 stdenv.mkDerivation rec { 15 - version = "2.2.26"; 15 + version = "2.2.27"; 16 16 name = "apache-httpd-${version}"; 17 17 18 18 src = fetchurl { 19 19 url = "mirror://apache/httpd/httpd-${version}.tar.bz2"; 20 - sha256 = "1dj29cl2bsk8ir8hxw0ajhbpbrrmsh8mwqfc1ipiqgv7slyqx45g"; 20 + sha256 = "0iw19y6knijinqwvv4q16fgq5xq8nwxdg14wrrbc0mfasvg76n90"; 21 21 }; 22 22 23 23 buildInputs = [perl apr aprutil pcre] ++ ··· 59 59 homepage = http://httpd.apache.org/; 60 60 license = stdenv.lib.licenses.asl20; 61 61 platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin; 62 - maintainers = with stdenv.lib.maintainers; [ simons lovek323 ]; 62 + maintainers = with stdenv.lib.maintainers; [ eelco simons lovek323 ]; 63 63 }; 64 64 }