summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--pkgs/servers/http/apache-httpd/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/servers/http/apache-httpd/default.nix b/pkgs/servers/http/apache-httpd/default.nix
index 22f733e40c6..0d586b0c3a6 100644
--- a/pkgs/servers/http/apache-httpd/default.nix
+++ b/pkgs/servers/http/apache-httpd/default.nix
@@ -8,12 +8,12 @@ assert sslSupport -> openssl != null;
 assert ldapSupport -> aprutil.ldapSupport && openldap != null;
 
 stdenv.mkDerivation rec {
-  version = "2.2.20";
+  version = "2.2.21";
   name = "apache-httpd-${version}";
 
   src = fetchurl {
     url = "mirror://apache/httpd/httpd-${version}.tar.bz2";
-    sha1 = "c8f00a505af6ed3f89f45b640217c388f5cd32b0";
+    sha1 = "c02f9b05da9a7e316ff37d9053dc76a57ba51cb4";
   };
 
   buildInputs = [perl apr aprutil pcre] ++