Skip to content

Commit

Permalink
Merge pull request #20046 from copumpkin/omg-test
Browse files Browse the repository at this point in the history
Remove obsolete versions of db
  • Loading branch information
copumpkin committed Nov 1, 2016
2 parents 5b8b918 + 5087452 commit 1fa9d99
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 32 deletions.
9 changes: 0 additions & 9 deletions pkgs/development/libraries/db/db-4.4.nix

This file was deleted.

9 changes: 0 additions & 9 deletions pkgs/development/libraries/db/db-4.5.nix

This file was deleted.

8 changes: 0 additions & 8 deletions pkgs/development/libraries/db/db-4.7.nix

This file was deleted.

2 changes: 1 addition & 1 deletion pkgs/misc/my-env/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
# this is the example we will be using
nixEnv = complicatedMyEnv {
name = "nix";
buildInputs = [ libtool stdenv perl curl bzip2 openssl db45 autoconf automake zlib ];
buildInputs = [ libtool stdenv perl curl bzip2 openssl db5 autoconf automake zlib ];
};
};
}
Expand Down
7 changes: 2 additions & 5 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5519,7 +5519,7 @@ in
python3Packages = python35Packages;

python26 = callPackage ../development/interpreters/python/cpython/2.6 {
db = db47;
db = db4;
self = python26;
};
python27 = callPackage ../development/interpreters/python/cpython/2.7 {
Expand Down Expand Up @@ -6500,7 +6500,7 @@ in

aprutil = callPackage ../development/libraries/apr-util {
bdbSupport = true;
db = if stdenv.isFreeBSD then db47 else db;
db = if stdenv.isFreeBSD then db4 else db;
# XXX: only the db_185 interface was available through
# apr with db58 on freebsd (nov 2015), for unknown reasons
};
Expand Down Expand Up @@ -6714,9 +6714,6 @@ in
# bsd-like license
db = db5;
db4 = db48;
db44 = callPackage ../development/libraries/db/db-4.4.nix { };
db45 = callPackage ../development/libraries/db/db-4.5.nix { };
db47 = callPackage ../development/libraries/db/db-4.7.nix { };
db48 = callPackage ../development/libraries/db/db-4.8.nix { };
db5 = db53;
db53 = callPackage ../development/libraries/db/db-5.3.nix { };
Expand Down

0 comments on commit 1fa9d99

Please sign in to comment.