postgresql10: rename from postgresql100

This commit is contained in:
Alyssa Ross 2018-10-23 16:09:43 +02:00
parent 2380f6a4fa
commit 9594b59f13
No known key found for this signature in database
GPG key ID: C4844408C0657052
4 changed files with 4 additions and 3 deletions

View file

@ -9,7 +9,7 @@ import ./make-test.nix ({ pkgs, ...} : {
{ pkgs, ... }:
{
services.postgresql = let mypg = pkgs.postgresql100; in {
services.postgresql = let mypg = pkgs.postgresql10; in {
enable = true;
package = mypg;
extraPlugins = [ (pkgs.postgis.override { postgresql = mypg; }) ];

View file

@ -123,7 +123,7 @@ in {
sha256 = "09l4zqs74fqnazdsyln9x657mq3wsbgng9wpvq71yh26cv2sq5c6";
};
postgresql100 = common {
postgresql10 = common {
version = "10.5";
psqlSchema = "10.0";
sha256 = "04a07jkvc5s6zgh6jr78149kcjmsxclizsqabjw44ld4j5n633kc";

View file

@ -225,6 +225,7 @@ mapAliases ({
piwik = matomo; # added 2018-01-16
pltScheme = racket; # just to be sure
poppler_qt5 = libsForQt5.poppler; # added 2015-12-19
postgresql100 = throw "deprecated 2018-10-21: use postgresql10 instead";
procps-ng = procps; # added 2018-06-08
prometheus-statsd-bridge = prometheus-statsd-exporter; # added 2017-08-27
pulseaudioLight = pulseaudio; # added 2018-04-25

View file

@ -13610,7 +13610,7 @@ with pkgs;
postgresql94
postgresql95
postgresql96
postgresql100;
postgresql10;
postgresql_jdbc = callPackage ../servers/sql/postgresql/jdbc { };