about summary refs log tree commit diff
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2004-04-21 11:44:07 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2004-04-21 11:44:07 +0000
commitadf48bddbaf50e5d0c3a9ddd6ae201375663ed13 (patch)
treedf4bc60425c510f1d52ce0df5068186442822c64
parent73ad8265a8f9721cb9fa5f15f5aa56269d77c9d0 (diff)
* Subversion upgraded to 1.0.2.
svn path=/nixpkgs/trunk/; revision=960
-rw-r--r--pkgs/applications/version-management/subversion/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/version-management/subversion/default.nix b/pkgs/applications/version-management/subversion/default.nix
index 171ef1b3ee8e2..d22d474fd42dc 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.1";
+  name = "subversion-1.0.2";
 
   builder = ./builder.sh;
   src = fetchurl {
-    url = http://subversion.tigris.org/tarballs/subversion-1.0.1.tar.bz2;
-    md5 = "50ca608d260b76d99ed85909acb7ae92";
+    url = http://subversion.tigris.org/tarballs/subversion-1.0.2.tar.bz2;
+    md5 = "246ffcc67ca629ae523956c4c1a67cce";
   };
 
   openssl = if sslSupport then openssl else null;