Skip to content

Commit

Permalink
Merge branch 'staging-20.09' into release-20.09
Browse files Browse the repository at this point in the history
  • Loading branch information
vcunat committed Jan 8, 2021
2 parents e12d6af + 9a779ca commit c30ad09
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 128 deletions.
21 changes: 10 additions & 11 deletions pkgs/servers/sql/postgresql/default.nix
Expand Up @@ -65,7 +65,6 @@ let
./patches/specify_pkglibdir_at_runtime.patch
./patches/findstring.patch
]
++ lib.optional (atLeast "10") ./patches/stabilize-timetz-dst.patch
++ lib.optional stdenv.isLinux ./patches/socketdir-in-run.patch;

installTargets = [ "install-world" ];
Expand Down Expand Up @@ -184,41 +183,41 @@ let
in self: {

postgresql_9_5 = self.callPackage generic {
version = "9.5.23";
version = "9.5.24";
psqlSchema = "9.5";
sha256 = "0rl31jc3kg2wq6hazyd297gnmx3cibjvivllbsivii2m6dzgl573";
sha256 = "0an2k4m1da96897hyxlff8p4p63wg4dffwsfg57aib7mp4yzsp06";
this = self.postgresql_9_5;
inherit self;
};

postgresql_9_6 = self.callPackage generic {
version = "9.6.19";
version = "9.6.20";
psqlSchema = "9.6";
sha256 = "1c2wnl5bbpjs1s1rpzvlnzsqlpb0p823zw7s38nhpgnxrja3myb1";
sha256 = "1dkv916y7vrfbygrfbfvs6y3fxaysnh32i5j88nvcnnl16jcn21x";
this = self.postgresql_9_6;
inherit self;
};

postgresql_10 = self.callPackage generic {
version = "10.14";
version = "10.15";
psqlSchema = "10.0"; # should be 10, but changing it is invasive
sha256 = "0fxj30jvwq5pqpbj97vhlxgmn2ah59a78s9jyjr7vxyqj7sdh71q";
sha256 = "0zhzj9skag1pgqas2rnd217vj41ilaalqna17j47gyngpvhbqmjr";
this = self.postgresql_10;
inherit self;
};

postgresql_11 = self.callPackage generic {
version = "11.9";
version = "11.10";
psqlSchema = "11.1"; # should be 11, but changing it is invasive
sha256 = "0db6pfphc5rp12abnkvv2l9pbl7bdyf3hhiwj8ghjwh35skqlq9m";
sha256 = "16bqp6ds37kbwqx7mk5gg3y6gv59wq6xz33iqwxldzk20vwd5rhk";
this = self.postgresql_11;
inherit self;
};

postgresql_12 = self.callPackage generic {
version = "12.4";
version = "12.5";
psqlSchema = "12";
sha256 = "1k06wryy8p4s1fim9qafcjlak3f58l0wqaqnrccr9x9j5jz3zsdy";
sha256 = "15gzg778da23sbfmy7sqg443f9ny480301lm7i3vay4m3ls2a3dx";
this = self.postgresql_12;
inherit self;
};
Expand Down
117 changes: 0 additions & 117 deletions pkgs/servers/sql/postgresql/patches/stabilize-timetz-dst.patch

This file was deleted.

0 comments on commit c30ad09

Please sign in to comment.