diff --git a/pkgs/applications/version-management/subversion/default.nix b/pkgs/applications/version-management/subversion/default.nix index d22d474fd42..53d9f623819 100644 --- a/pkgs/applications/version-management/subversion/default.nix +++ b/pkgs/applications/version-management/subversion/default.nix @@ -13,12 +13,12 @@ assert sslSupport -> openssl != null && (httpServer -> httpd.openssl == openssl) assert swigBindings -> swig != null && swig.pythonSupport; stdenv.mkDerivation { - name = "subversion-1.0.2"; + name = "subversion-1.0.4"; builder = ./builder.sh; src = fetchurl { - url = http://subversion.tigris.org/tarballs/subversion-1.0.2.tar.bz2; - md5 = "246ffcc67ca629ae523956c4c1a67cce"; + url = http://subversion.tigris.org/tarballs/subversion-1.0.4.tar.bz2; + md5 = "313bd03f353683de7561eadf477f7612"; }; openssl = if sslSupport then openssl else null;