* Upgrade to Subversion 0.35.1, Berkeley DB 4.2.52.

svn path=/nixpkgs/trunk/; revision=595
This commit is contained in:
Eelco Dolstra 2003-12-22 18:30:38 +00:00
parent fe1c5cb1e1
commit 5e7f5b2ada
3 changed files with 9 additions and 9 deletions

View File

@ -13,13 +13,13 @@ assert sslSupport -> !isNull openssl && (httpServer -> httpd.openssl == openssl)
assert swigBindings -> !isNull swig && swig.pythonSupport; assert swigBindings -> !isNull swig && swig.pythonSupport;
derivation { derivation {
name = "subversion-0.32.1"; name = "subversion-0.35.1";
system = stdenv.system; system = stdenv.system;
builder = ./builder.sh; builder = ./builder.sh;
src = fetchurl { src = fetchurl {
url = http://svn.collab.net/tarballs/subversion-0.32.1.tar.gz; url = http://subversion.tigris.org/tarballs/subversion-0.35.1.tar.gz;
md5 = "b06717a8ef50db4b5c4d380af00bd901"; md5 = "c4473988acdd82e8b0e176eefc7d0fb7";
}; };
localServer = localServer; localServer = localServer;

View File

@ -1,10 +1,10 @@
{stdenv, fetchurl}: derivation { {stdenv, fetchurl}: derivation {
name = "db4-4.0.14"; name = "db4-4.2.52";
system = stdenv.system; system = stdenv.system;
builder = ./builder.sh; builder = ./builder.sh;
src = fetchurl { src = fetchurl {
url = http://www.sleepycat.com/update/snapshot/db-4.0.14.tar.gz; url = http://www.sleepycat.com/update/snapshot/db-4.2.52.tar.gz;
md5 = "12262c64fcd64b772e7cffad8e4d0ebc"; md5 = "cbc77517c9278cdb47613ce8cb55779f";
}; };
stdenv = stdenv; stdenv = stdenv;
} }

View File

@ -3,12 +3,12 @@
assert !isNull perl && !isNull db4; assert !isNull perl && !isNull db4;
derivation { derivation {
name = "perl-BerkeleyDB-0.23"; name = "perl-BerkeleyDB-0.25";
system = stdenv.system; system = stdenv.system;
builder = ./builder.sh; builder = ./builder.sh;
src = fetchurl { src = fetchurl {
url = http://archive.cs.uu.nl/mirror/CPAN/authors/id/P/PM/PMQS/BerkeleyDB-0.23.tar.gz; url = ftp://ftp.cs.uu.nl/mirror/CPAN/authors/id/P/PM/PMQS/BerkeleyDB-0.25.tar.gz;
md5 = "d97b85ea5b61bde7de4a998c91ef29c7"; md5 = "fcef06232d1ccd6c2a9cd114e388ea3d";
}; };
stdenv = stdenv; stdenv = stdenv;
perl = perl; perl = perl;