From c845640a64b4199fec98eeabb32fd566ff072f2b Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Mon, 9 May 2005 15:39:01 +0000 Subject: [PATCH] * Berkeley DB updated to 4.3.28. svn path=/nixpkgs/trunk/; revision=3015 --- pkgs/development/libraries/db4/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/db4/default.nix b/pkgs/development/libraries/db4/default.nix index b4756df9194..19592f0d057 100644 --- a/pkgs/development/libraries/db4/default.nix +++ b/pkgs/development/libraries/db4/default.nix @@ -1,11 +1,11 @@ {stdenv, fetchurl, cxxSupport ? true, compat185 ? true}: stdenv.mkDerivation { - name = "db4-4.2.52"; + name = "db4-4.3.28"; builder = ./builder.sh; src = fetchurl { - url = http://catamaran.labs.cs.uu.nl/dist/tarballs/db-4.2.52.tar.gz; - md5 = "cbc77517c9278cdb47613ce8cb55779f"; + url = http://downloads.sleepycat.com/db-4.3.28.NC.tar.gz; + md5 = "6efcf5f4f30c7170f68d8952739771cd"; }; configureFlags = [ (if cxxSupport then "--enable-cxx" else "--disable-cxx")