about summary refs log tree commit diff
path: root/pkgs/servers
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2014-05-01 11:48:56 +0200
committerEelco Dolstra <eelco.dolstra@logicblox.com>2014-05-01 11:48:56 +0200
commit65a78e16f1485d3d100c9e42458dd13f579d5484 (patch)
tree5f891cc915797d03296cd1ab1b33a0f98e46e8f6 /pkgs/servers
parentba332accc2e4c2d18d3abb268d7ecf7bd301307c (diff)
downloadnixlib-65a78e16f1485d3d100c9e42458dd13f579d5484.tar
nixlib-65a78e16f1485d3d100c9e42458dd13f579d5484.tar.gz
nixlib-65a78e16f1485d3d100c9e42458dd13f579d5484.tar.bz2
nixlib-65a78e16f1485d3d100c9e42458dd13f579d5484.tar.lz
nixlib-65a78e16f1485d3d100c9e42458dd13f579d5484.tar.xz
nixlib-65a78e16f1485d3d100c9e42458dd13f579d5484.tar.zst
nixlib-65a78e16f1485d3d100c9e42458dd13f579d5484.zip
httpd: Update to 2.2.27
CVE-2013-6438, CVE-2014-0098
Diffstat (limited to 'pkgs/servers')
-rw-r--r--pkgs/servers/http/apache-httpd/2.2.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/servers/http/apache-httpd/2.2.nix b/pkgs/servers/http/apache-httpd/2.2.nix
index 64dd15be3df7..e5e2e2215b49 100644
--- a/pkgs/servers/http/apache-httpd/2.2.nix
+++ b/pkgs/servers/http/apache-httpd/2.2.nix
@@ -12,12 +12,12 @@ assert ldapSupport -> aprutil.ldapSupport && openldap != null;
 assert mpm == "prefork" || mpm == "worker" || mpm == "event";
 
 stdenv.mkDerivation rec {
-  version = "2.2.26";
+  version = "2.2.27";
   name = "apache-httpd-${version}";
 
   src = fetchurl {
     url = "mirror://apache/httpd/httpd-${version}.tar.bz2";
-    sha256 = "1dj29cl2bsk8ir8hxw0ajhbpbrrmsh8mwqfc1ipiqgv7slyqx45g";
+    sha256 = "0iw19y6knijinqwvv4q16fgq5xq8nwxdg14wrrbc0mfasvg76n90";
   };
 
   buildInputs = [perl apr aprutil pcre] ++
@@ -59,6 +59,6 @@ stdenv.mkDerivation rec {
     homepage    = http://httpd.apache.org/;
     license     = stdenv.lib.licenses.asl20;
     platforms   = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin;
-    maintainers = with stdenv.lib.maintainers; [ simons lovek323 ];
+    maintainers = with stdenv.lib.maintainers; [ eelco simons lovek323 ];
   };
 }