mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
postgresql: Bump default version to 9.5
This commit is contained in:
parent
5e6962ff2e
commit
fd8bd17c3e
2 changed files with 2 additions and 2 deletions
|
@ -158,7 +158,7 @@ in
|
|||
# Note: when changing the default, make it conditional on
|
||||
# ‘system.stateVersion’ to maintain compatibility with existing
|
||||
# systems!
|
||||
mkDefault pkgs.postgresql94;
|
||||
mkDefault (if versionAtLeast config.system.stateVersion "16.03" then pkgs.postgresql95 else pkgs.postgresql94);
|
||||
|
||||
services.postgresql.authentication = mkAfter
|
||||
''
|
||||
|
|
|
@ -9603,7 +9603,7 @@ let
|
|||
libmemcached = null; # Detection is broken upstream
|
||||
};
|
||||
|
||||
postgresql = postgresql94;
|
||||
postgresql = postgresql95;
|
||||
|
||||
inherit (callPackages ../servers/sql/postgresql { })
|
||||
postgresql90
|
||||
|
|
Loading…
Reference in a new issue