Move all db4 packages to the default db5

This commit is contained in:
William A. Kennington III
2014-01-31 14:05:37 -06:00
committed by Bjørn Forsman
parent 99f5d2edb4
commit bdb842d5eb
37 changed files with 81 additions and 85 deletions

View File

@@ -1,4 +1,4 @@
{stdenv, fetchurl, python, db4}:
{stdenv, fetchurl, python, db}:
stdenv.mkDerivation rec {
name = "bsddb3-6.0.1";
@@ -8,5 +8,5 @@ stdenv.mkDerivation rec {
};
buildInputs = [python];
buildPhase = "true";
installPhase = "python ./setup.py install --prefix=$out --berkeley-db=${db4}";
installPhase = "python ./setup.py install --prefix=$out --berkeley-db=${db}";
}