3
0
Fork 0
forked from mirrors/nixpkgs

postgresql: bump the attribute from PostgreSQL 9.6 to version 11

This change affects packages that refers to postgres in order to get access to
the client code, libpq, and these packages will now be compiled supporting the
latest version.

This change does not affect NixOS, i.e. people who want to run a PostgreSQL
server. The NixOS module always refers to specific versions of 'postgres', so
if you want to use the latest version there, too, then you'll have to configure
your system appropriately in configuration.nix.

See https://github.com/NixOS/nixpkgs/pull/69194 for an effort to update the
NixOS module, too.

Fixes https://github.com/NixOS/nixpkgs/issues/69141.
This commit is contained in:
Peter Simons 2019-09-21 14:53:00 +02:00
parent c5f3851909
commit 28b8d6b172

View file

@ -14994,9 +14994,9 @@ in
postgresql_10
postgresql_11
;
postgresql = postgresql_9_6.override { this = postgresql; };
postgresql = postgresql_11.override { this = postgresql; };
postgresqlPackages = recurseIntoAttrs postgresql.pkgs;
postgresql11Packages = recurseIntoAttrs postgresql_11.pkgs;
postgresql11Packages = pkgs.postgresqlPackages;
postgresql_jdbc = callPackage ../development/java-modules/postgresql_jdbc { };