summary refs log tree commit diff
path: root/pkgs/development/python-modules/bsddb3
diff options
context:
space:
mode:
authorWilliam A. Kennington III <william@wkennington.com>2014-01-31 14:05:37 -0600
committerBjørn Forsman <bjorn.forsman@gmail.com>2014-02-15 12:03:02 +0100
commitbdb842d5ebb8fd5aea400312373eaeb0126b726c (patch)
tree55f34718f08b778f60095d6faaa8671e7582405a /pkgs/development/python-modules/bsddb3
parent99f5d2edb423194540a2bf83365e7b78b1ffccc9 (diff)
downloadnixpkgs-bdb842d5ebb8fd5aea400312373eaeb0126b726c.tar
nixpkgs-bdb842d5ebb8fd5aea400312373eaeb0126b726c.tar.gz
nixpkgs-bdb842d5ebb8fd5aea400312373eaeb0126b726c.tar.bz2
nixpkgs-bdb842d5ebb8fd5aea400312373eaeb0126b726c.tar.lz
nixpkgs-bdb842d5ebb8fd5aea400312373eaeb0126b726c.tar.xz
nixpkgs-bdb842d5ebb8fd5aea400312373eaeb0126b726c.tar.zst
nixpkgs-bdb842d5ebb8fd5aea400312373eaeb0126b726c.zip
Move all db4 packages to the default db5
Diffstat (limited to 'pkgs/development/python-modules/bsddb3')
-rw-r--r--pkgs/development/python-modules/bsddb3/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/bsddb3/default.nix b/pkgs/development/python-modules/bsddb3/default.nix
index c26347c5243..574796e2c68 100644
--- a/pkgs/development/python-modules/bsddb3/default.nix
+++ b/pkgs/development/python-modules/bsddb3/default.nix
@@ -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}";
 }