mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
perl-packages.nix, all-packages.nix: generally refer to 'postgresql' instead of 'postgresql92'
This allows users to override the 'postgres' attribute with a different version and have the effect propagated to all other packages that depend on it.
This commit is contained in:
parent
d81e8a9cc3
commit
cde41fe551
2 changed files with 4 additions and 7 deletions
|
@ -5547,9 +5547,7 @@ let
|
|||
|
||||
postgresql_jdbc = callPackage ../servers/sql/postgresql/jdbc { };
|
||||
|
||||
psqlodbc = callPackage ../servers/sql/postgresql/psqlodbc {
|
||||
postgresql = postgresql91;
|
||||
};
|
||||
psqlodbc = callPackage ../servers/sql/postgresql/psqlodbc { };
|
||||
|
||||
pyIRCt = builderDefsPackage (import ../servers/xmpp/pyIRCt) {
|
||||
inherit xmpppy pythonIRClib python makeWrapper;
|
||||
|
|
|
@ -1518,8 +1518,7 @@ rec {
|
|||
};
|
||||
|
||||
DBDPg = import ../development/perl-modules/DBD-Pg {
|
||||
inherit stdenv fetchurl buildPerlPackage DBI;
|
||||
postgresql = pkgs.postgresql92;
|
||||
inherit stdenv fetchurl buildPerlPackage DBI postgresql;
|
||||
};
|
||||
|
||||
DBFile = import ../development/perl-modules/DB_File {
|
||||
|
|
Loading…
Reference in a new issue