mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
bsddb3: upgrade to 6.0.1
should be backward compatible with all bdb 3 and 4 versions
This commit is contained in:
parent
4a909c7be3
commit
5e2921df64
1 changed files with 4 additions and 4 deletions
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue