From 106567146f115e6d4c2ad58424127c15bc2b30a5 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 1 Jun 2004 14:52:57 +0000 Subject: [PATCH] * Subversion 1.0.4. svn path=/nixpkgs/trunk/; revision=1038 --- pkgs/applications/version-management/subversion/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/version-management/subversion/default.nix b/pkgs/applications/version-management/subversion/default.nix index d22d474fd42d..53d9f6238194 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;