bsddb3: upgrade to 6.0.1

should be backward compatible with all bdb 3 and 4 versions
This commit is contained in:
Mathijs Kwik 2013-12-16 14:29:42 +01:00
parent 4a909c7be3
commit 5e2921df64

View File

@ -1,10 +1,10 @@
{stdenv, fetchurl, python, db4}:
stdenv.mkDerivation {
name = "bsddb3-4.5.0";
stdenv.mkDerivation rec {
name = "bsddb3-6.0.1";
src = fetchurl {
url = mirror://sourceforge/pybsddb/bsddb3-4.5.0.tar.gz;
sha256 = "1h09kij32iikr9racp5p7qrb4li2gf2hs0lyq6d312qarja4d45v";
url = "https://pypi.python.org/packages/source/b/bsddb3/${name}.tar.gz";
md5 = "2b22ab1b4d896961c30e4106660e9139";
};
buildInputs = [python];
buildPhase = "true";